X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Changing link colours in speedbar (https://forum.x-cart.com/showthread.php?t=7714)

Emerson 05-24-2004 05:59 PM

What exactly is not working?
The regular font color?

try to edit
Code:

.Tab {
  BACKGROUND-COLOR: #73004E;
}


to
Code:

.Tab {
  BACKGROUND-COLOR: #73004E;
  COLOR: #color;
}


adpboss 05-24-2004 06:00 PM

Put the .tab entries back where they belong.

Regenerate your templates by running cleanup.php

Never post your entire file like that again, because I don't want to scroll for 1/2 an hour. Post what is relevant.

Emerson 05-24-2004 06:03 PM

Quote:

Originally Posted by adpboss
Put the .tab entries back where they belong.

Regenerate your templates by running cleanup.php

Never post your entire file like that again, because I don't want to scroll for 1/2 an hour. Post what is relevant.


You tell him :lol:

adpboss 05-24-2004 06:31 PM

GM,

You need to fix the thread title and never post an entire file when a snippet will do. Sorry if I sounded harsh before, but you've been around for awhile now. We expect more from you.

Copy my tab code exactly as I have it in my example.

Just change what you absolutely need, don't try to get too fancy. You need to flush your template cache either from the Summery page in the admin or via http://www.yoursite.com/xcartdirectory/cleanup.php.

Just try and get a basic mouseover (hover) change happening before trying to butcher all of the code. Your idea of moving it up the Style Sheet doesn't have any effect.

This is a rudimentary error, but we need to know that you are trying the basics first. Always make troubleshooting simple.

GM 05-24-2004 07:36 PM

I Put the Tab section back... copied and pasted your code (and colours) exactly... cleaned the template cache... STILL DOSEN'T WORK.

The reason I included the full CSS is incase there are vast differences in 3.5.7... Sorry.

adpboss 05-24-2004 07:46 PM

Can you please paste only the tab code here. Just two lines above, the code and then two lines below will do.

I'm trying to clear orders right now, but I will look at this until we get it worked out.

[EDIT] Unfortunately, I disable the speed bar in my 3.5.7 store (removed from code) so I don't have a sample to play with.

GM 05-24-2004 08:02 PM

Thanks for not bailing on me...

Code:

.SmallText {
        COLOR: #FFFFFF; TEXT-DECORATION: none; FONT-SIZE: 12px; FONT-FAMILY: Arial, Verdana, Helvetica, Sans-serif;
}
.Bottom {
        BACKGROUND-COLOR: #73004E; COLOR: #FFD44C;
}
.Tab {
        COLOR: #73004E; TEXT-DECORATION: none;
}
.Tab:link {
        COLOR: #330000; TEXT-DECORATION: none;
}
.Tab:visited {
        COLOR: #330000; TEXT-DECORATION: none;
}
.Tab:active  {
        COLOR: #330000; TEXT-DECORATION: none;
}
.CatMenuItemOff
{
    BACKGROUND-COLOR: #FFD44C;              /* like "VertMenuBox" */
    BORDER-RIGHT: #FFD44C 1px solid;        /* like "VertMenuBox" */.Tab:hover {
        COLOR: #550000; TEXT-DECORATION: underline;
}


This is the original:

Code:

.Bottom {
        BACKGROUND-COLOR: #73004E; COLOR: #FFD44C;
}
.Tab {
        BACKGROUND-COLOR: #73004E;
        FONT-WEIGHT: bold;
        TEXT-TRANSFORM: uppercase;
}
.CatMenuItemOff
{
    BACKGROUND-COLOR: #FFD44C;              /* like "VertMenuBox" */


adpboss 05-24-2004 08:08 PM

Try this

Code:

.Tab {
  BACKGROUND-COLOR: #73004E;
  FONT-WEIGHT: bold;
  TEXT-TRANSFORM: uppercase;
}
.Tab:link {
        COLOR: #330000; TEXT-DECORATION: none;
}
.Tab:visited {
        COLOR: #330000; TEXT-DECORATION: none;
}
.Tab:active  {
        COLOR: #330000; TEXT-DECORATION: none;
}


GM 05-24-2004 08:15 PM

That was the first thing I tried.

GM 05-24-2004 08:19 PM

For some reason the A Link styles are over riding everything...?

[EDIT] Tried it again to be sure... NOPE


All times are GMT -8. The time now is 02:19 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.