Jump to content

Solved: Cart block CSS


Recommended Posts

Ah, I was looking in [mytheme]/modules/blockcart instead of [myshop]/modules/blockcart. Thank you!

 

#header #cart_block seems to work well for styling the expanded portion, but I can't figure out how to to style the collapsed portion?

Link to comment
Share on other sites

if you're talking about this:

v70IGOE.png

 

This isn't cart.

it's a <ul> element named header_nav (id)

 

you can define styles for that in the: /modules/blockuserinfo/blockuserinfo.css file (line ~8)

 

change it to:

#header_nav {
list-style-type: none;
float: right;
background: #fafafa;
border: 1px dashed #000;
border-radius: 5px;
}

 

effect:

BoX5igm.png

Link to comment
Share on other sites

Ah! Thank you vekia! That's confusing!

 

The border and border radius worked, but the background color did not.

 

That box is dark gray, but no background color is defined in #header_nav. It's defined somewhere else. Adding background color to #header_nav didn't override the dark gray definition, so we'll need to find and remove/change it.

 

Any theories?

Link to comment
Share on other sites

Actually, !important; didn't work since the contradicting background definition was on the same style sheet ( !important; seems to only work if the definition you're trying to supercede is in a different file.

 

In case anyone is wondering, I found it under

 #shopping_cart a

Edited by jleesaxon (see edit history)
Link to comment
Share on other sites

  • 2 weeks later...

Hi, I am having a similar problem. I'm trying to remove the border-radius by editing blockuserinfo.css, and it works but only until you expand the cart, then it returns to having 3px border-radius. Please check my site to see what I'm talking about:

Edited by duratex (see edit history)
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...