Jump to content

problem with shopping cart


Recommended Posts

You need to adjust one line in blockcart.css wich is in /themes/default/css/modules/blockcart2/blockcart.css

#cart_block {
.
.
.
top: 65px;
.
.
.
}

 

So increase 65px by value of height of that banner image.

Or check code and move that image outside and before div element with id="header."

Link to comment
Share on other sites

Here is what you need to change, in the code below I have changed the top:100px to top:340px you can change to your liking.

 

#header #cart_block {

 

z-index: 150;

display:none;

position: absolute;

right: 0;

top: 340px;

height: auto;

width: 200px;

-moz-border-bottom-right-radius: 3px;

-moz-border-bottom-left-radius: 3px;

-webkit-border-bottom-right-radius: 3px;

-webkit-border-bottom-left-radius: 3px;

border-bottom-right-radius: 3px;

border-bottom-left-radius: 3px;

box-shadow: 0 1px 0 #C6C6C6;

background:#eee;

}

 

 

 

Also in the global.css file if you change

#header_logo {

float:left;

display:block;

margin-top:30px; (chnage this to 5 or 0 will remove large space at top)

}

 

You can also need to edit Blocksearch.css, blockpermanentlinks.css, blocklanguages.css, blockuserinfo.css and blockcurrencies.css to position those where you want them.

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

hello my friend. Whatever i change to top nothing happen doesn't move. I try 500px but nothing

Im using mozilla firefox. What i did i change top and i make it 340. I upload to my server. modules/blockcart/blockcart.css but when i refresh my page and i right click on the page and i choose view page source there is still show me top:65px

so the problem is that is not here that i need to change and upload and i don't know where

Link to comment
Share on other sites

SAVGEORG:

 

Not sure what you are seeing I just copied this from my Google developer and the 340 is there.

 

#header #cart_block {

z-index: 10;

display:none;

position: absolute;

right: 0;

top: 340px;

height: auto;

width: 200px;

-moz-border-bottom-right-radius: 3px;

-moz-border-bottom-left-radius: 3px;

-webkit-border-bottom-right-radius: 3px;

-webkit-border-bottom-left-radius: 3px;

border-bottom-right-radius: 3px;

border-bottom-left-radius: 3px;

box-shadow: 0 1px 0 #C6C6C6;

background:#eee

}

Link to comment
Share on other sites

×
×
  • Create New...