Link to home
Start Free TrialLog in
Avatar of Richard Korts
Richard KortsFlag for United States of America

asked on

Missing Submit Button

I have this code:
<div class="row">
			<div class="col-sm-10 col-xs-10 nopadding" style="font-size:17px;"><b>Modify Trade Price</b></div>
		</div>
		<div class="row">
			<div class="col-sm-8 col-xs-8 nopadding" style="font-size:17px;">&nbsp;&nbsp;<b>Total Trade Price</b></div>
			<div class="col-sm-3 cos-xs-3 nopadding text-right" style="font-size:16px;"><b>$ <? print number_format($_SESSION['trade_price'],2); ?></b></div>  
		</div>
		<div class="row">
			<div class="col-sm-8 col-xs-8 nopadding" style="font-size:17px;">&nbsp;&nbsp;<b>Markup</b>&nbsp;<span style="font-size:12px;"><a href="#" onclick="show_Mkup_desc();">More Info</a></span></div>
			<div class="col-sm-3 col-xs-3 nopadding text-right" style="font-size:16px;"><input type="text" name="markup" size="6"></div>  
		</div>
		<div class="row">
			<div class="col-sm-6 col-xs-6 text-right" style="padding-top:10px;">&nbsp;</div>
			<div class="col-sm-2 col-xs-2 text-right" style="padding-top:10px;"><input type="submit" value="Clear" style="color:white; background-color: #5B9BD5; border-style: solid; border-color:#41719C; box-shadow: 4px 4px 2px #C3BDBD;" onMousedown="ac='cm';"></div>
			<div class="col-sm-3 col-xs-3 text-right" style="padding-top:10px;"<input type="submit" value="Confirm" style="color:white; background-color: #5B9BD5; border-style: solid; border-color:#41719C; box-shadow: 4px 4px 2px #C3BDBD;" onMousedown="ac='co';"></div>
		</div>

Open in new window


Which produces the attached. Why is the submit button with "Confirm" missing?
ASKER CERTIFIED SOLUTION
Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Richard Korts

ASKER

Yeah, I caught it myself.

Thanks