murph Posted November 23, 2004 Posted November 23, 2004 A quick stylesheet help needed please! I have a site that is a white background with black infoboxes. Background text set to black. I have set the infobox text to white and all shows fine. EXCEPT on the create a new account page - the entire form field box is black with white boxes for the input. Input shows fine with black text BUT the text on the form itself where it says first name, last name etc is in black and therefore cannot be seen. Problem is I can get that text to white by using td.main but then of course the main text on the whole site turns to white so on the white background all the text then becomes invisible! I have tried pretty much every other stylesheet option and can't seem to find which one (if there is one) that will JUST change the text on that create account form (and the login form) to be white, without changing any other site text. Can anyone help me?? :'(
Guest Posted November 23, 2004 Posted November 23, 2004 A quick stylesheet help needed please! I have a site that is a white background with black infoboxes. Background text set to black. I have set the infobox text to white and all shows fine. EXCEPT on the create a new account page - the entire form field box is black with white boxes for the input. Input shows fine with black text BUT the text on the form itself where it says first name, last name etc is in black and therefore cannot be seen. Problem is I can get that text to white by using td.main but then of course the main text on the whole site turns to white so on the white background all the text then becomes invisible! I have tried pretty much every other stylesheet option and can't seem to find which one (if there is one) that will JUST change the text on that create account form (and the login form) to be white, without changing any other site text. Can anyone help me?? :'( <{POST_SNAPBACK}> Edit this and paste it into your stylesheet and reference it in your account text (class="accountstyle" ): .accountstyle { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #FF9900; line-height: normal; text-decoration: none; font-style: none; } TJ
juss_me Posted November 23, 2004 Posted November 23, 2004 Edit this and paste it into your stylesheet and reference it in your account text (class="accountstyle" ): .accountstyle { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #FF9900; line-height: normal; text-decoration: none; font-style: none; } TJ <{POST_SNAPBACK}> Hi, I am very new at all this, and having a similar problem with several of my login pages. Can you please tell me where in the stylesheet to paste the above code, and where and how to reference in the account text? Thanks!
Guest Posted November 23, 2004 Posted November 23, 2004 Hi, I am very new at all this, and having a similar problem with several of my login pages. Can you please tell me where in the stylesheet to paste the above code, and where and how to reference in the account text? Thanks! <{POST_SNAPBACK}> Simple, just paste it in between the other tags TD.headerNavigation { font-family: Verdana, Arial, sans-serif; font-size: 10px; background: #bbc3d3; color: #ffffff; font-weight : bold; } A.headerNavigation { color: #FFFFFF; } .accountstyle { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #FF9900; line-height: normal; text-decoration: none; font-style: none; } A.headerNavigation:hover { color: #ffffff; } TR.headerError { background: #ff0000; } Then change your class on the page you want. I think it's account.php change to class="accountstyle" instead of what it is - probaly class="main" or something like that. Study up on CSS, it'll save you some trouble. :)
murph Posted November 23, 2004 Author Posted November 23, 2004 Simple, just paste it in between the other tags TD.headerNavigation { font-family: Verdana, Arial, sans-serif; font-size: 10px; background: #bbc3d3; color: #ffffff; font-weight : bold; } A.headerNavigation { color: #FFFFFF; } .accountstyle { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #FF9900; line-height: normal; text-decoration: none; font-style: none; } A.headerNavigation:hover { color: #ffffff; } TR.headerError { background: #ff0000; } Then change your class on the page you want. I think it's account.php change to class="accountstyle" instead of what it is - probaly class="main" or something like that. Study up on CSS, it'll save you some trouble. :) <{POST_SNAPBACK}> Worked great, thanks :D
Guest Posted November 24, 2004 Posted November 24, 2004 Thank you! <{POST_SNAPBACK}> Glad to be of service
Recommended Posts
Archived
This topic is now archived and is closed to further replies.