asp.net - set background color of all textboxes (input fields) to transparent -
i upgrading part of old website. 1 of pages own uses controls , dlls not. there 1 dll puts textbox (input field) on page. field concepually label person chose use textbox. anyways, can't change dll.
is there way in asp.net page uses dll textboxes on page should have transparent background?
this code have access to. changes make have made here.
<asp:content id="content1" contentplaceholderid="bodycontent" runat="server"> <style type="text/css"> .heading { color:#007dc3; font-weight:300; font-size:1.5em; line-height:1.22em; margin-bottom:22px; } </style> <cc1:wizard id="wizctl" runat="server"></cc1:wizard> </asp:content>
thanks!
like this?
<div style = "input[type='text']{ border: none; background-color: transparent; } "> <cc1:wizard id="wizctl" runat="server"></cc1:wizard> </div>
it doesnt seem work...
tried too:
<style input [type='text']{ border: none; background-color: transparent;} > <cc1:wizard id="wizctl" runat="server"></cc1:wizard> </style>
i can see problem. change code to
<style type='text/css'>div.tbwrap input[type='text']{ border: none; background-color: transparent;}</style> <div class='tbwrap'><cc1:wizard id="wizctl" runat="server"></cc1:wizard></div>
your style tag bit off , not thing 'cc1:wizard' tag should have been within style tag either.
Comments
Post a Comment