Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

stylesheet.css


ronsystems

Recommended Posts

Posted

WANT TO CHANGE Box background color change from b6b7cb to ff0000

---------------------------------------------------------------------------------

 

I successfully changed all the box border to ff0000 using:

 

.infoBox {

background: #ff0000;

}

 

 

and header colors using:

 

TD.infoBoxHeading {

font-family: Verdana, Arial, sans-serif;

font-size: 10px;

font-weight: bold;

background: #ff0000;

color: #ffffff;

}

 

 

The ONLY problem that I am having is the header "left corners" of each box color DOES NOT CHANGE. That small edge of the box does not change to #ff0000 and still that small corner portion is colored b6b7cb.

 

How can I change the top left corner of the header box from b6b7cb to ff0000.

 

Please help,

 

Dave

 

 

 

 

-------------------------

.infoBox {

background: #b6b7cb;

}

 

.infoBoxContents {

background: #f8f8f9;

font-family: Verdana, Arial, sans-serif;

font-size: 10px;

}

 

.infoBoxNotice {

background: #FF8E90;

}

 

.infoBoxNoticeContents {

background: #FFE6E6;

font-family: Verdana, Arial, sans-serif;

font-size: 10px;

}

 

TD.infoBoxHeading {

font-family: Verdana, Arial, sans-serif;

font-size: 10px;

font-weight: bold;

background: #b6b7cb;

color: #ffffff;

}

 

TD.infoBox, SPAN.infoBox {

font-family: Verdana, Arial, sans-serif;

font-size: 10px;

}

Posted

Think I'm reading your question right here.

 

You can't. They're images. Try finding properties or opening the image up to find it's path, then edit it to match your color spec.

 

Iggy

Everything's funny but nothing's a joke...

Posted
Think I'm reading your question right here.

 

You can't. They're images. Try finding properties or opening the image up to find it's path, then edit it to match your color spec.

 

Iggy

 

Thanks, Iggy it worked. They're images. Ron

 

I have another problem:

 

How can I change the following text and its color on the index.php:

 

1. What's New Here?

 

 

2. Welcome Guest! Would you like to log yourself in? Or would you prefer to create an account?

 

 

-------------

 

I want to change the text and color of What's New Here? to Free Beeies and I want to change the color to ff0000?

 

Secondly. instead of Welcome Guest, I want to say Welcome members.

 

Please help.

Posted

To change the colour of What's new here, change

TD.pageHeading, DIV.pageHeading {
 font-family: Verdana, Arial, sans-serif;
 font-size: 20px;
 font-weight: bold;
 color: #333333;
}

 

to change "Welcome" and " Would you like to log yourself in? Or would you prefer to create an account?" change:

TD.main, P.main {
 font-family: Verdana, Arial, sans-serif;
 font-size: 11px;
 line-height: 1.5;
}

 

To change "Guest" change:

SPAN.greetUser {
 font-family: Verdana, Arial, sans-serif;
 font-size: 12px;
 color: #333333;
 font-weight: bold;
}

 

To change the words, change /catalog/includes/languages/english.php:

define('TEXT_GREETING_PERSONAL', 'Welcome back <span class="greetUser">%s!</span> Would you like to see which <a href="%s"><u>new products</u></a> are available to purchase?');
define('TEXT_GREETING_PERSONAL_RELOGON', '<small>If you are not %s, please <a href="%s"><u>log yourself in</u></a> with your account information.</small>');
define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s"><u>log yourself in</u></a>? Or would you prefer to <a href="%s"><u>create an account</u></a>?');

 

Happy coding.

Posted
To change the colour of What's new here, change

TD.pageHeading, DIV.pageHeading {
?font-family: Verdana, Arial, sans-serif;
?font-size: 20px;
?font-weight: bold;
?color: #333333;
}

 

to change "Welcome" and " Would you like to log yourself in? Or would you prefer to create an account?" change:

TD.main, P.main {
?font-family: Verdana, Arial, sans-serif;
?font-size: 11px;
?line-height: 1.5;
}

 

To change "Guest" change:

SPAN.greetUser {
?font-family: Verdana, Arial, sans-serif;
?font-size: 12px;
?color: #333333;
?font-weight: bold;
}

 

To change the words, change /catalog/includes/languages/english.php:

define('TEXT_GREETING_PERSONAL', 'Welcome back <span class="greetUser">%s!</span> Would you like to see which <a href="%s"><u>new products</u></a> are available to purchase?');
define('TEXT_GREETING_PERSONAL_RELOGON', '<small>If you are not %s, please <a href="%s"><u>log yourself in</u></a> with your account information.</small>');
define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s"><u>log yourself in</u></a>? Or would you prefer to <a href="%s"><u>create an account</u></a>?');

 

Happy coding.

Archived

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

×
×
  • Create New...