Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Stylesheet help for create account TEXT please!


murph

Recommended Posts

Posted

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?? :'(

Posted
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??  :'(

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

Posted
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

 

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!

Posted
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!

 

 

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. :)

Posted
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. :)

 

 

Worked great, thanks :D

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...