Jump to content

color-change using firebug does not work


Recommended Posts

when placing multiple orders the orderpage (cartsummaryu) lokk like attach 1

Using the css-tool firebug I have to change ( see attach2)

I did that ( see attach 3) and transferred the new global.css to themes/default/global.css

But the changes are not taken.The summary looks as the first one.

What I'm doing wrong ? (I checked several trimes that I transferred the correct file)

 

post-474529-0-86031600-1420659002_thumb.jpg

post-474529-0-26213700-1420659014_thumb.jpg

post-474529-0-89130500-1420659022_thumb.jpg

Link to comment
Share on other sites

If you want it all black then find the following code in global.css

table.std, table.table_block {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: none repeat scroll 0 0 white;
    border-collapse: inherit;
    border-color: #999 #999 -moz-use-text-color;
    border-image: none;
    border-style: solid solid none;
    border-width: 1px 1px medium;
    margin-bottom: 20px;
    width: 100%;
}

and change it to

table.std, table.table_block {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: none repeat scroll 0 0 black;
    border-collapse: inherit;
    border-color: #999 #999 -moz-use-text-color;
    border-image: none;
    border-style: solid solid none;
    border-width: 1px 1px medium;
    margin-bottom: 20px;
    width: 100%;
}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...