Jump to content

[solved] Help with color changes and movement blocks


Recommended Posts

Hello Im working on my shop and having real trouble with 2 parts. Ill post a link to the site so you can see what Im working on.

 

http://artbymymindse...eshop/index.php

 

My first problem is trying to put a background just behind the main shop part of the page. heres a picture showing the area im talking about. Second problem is also circle as well, where the welcome, currency change and cart are under the search and I cant seem to figure out how to move them. Thanks in advance for any help.

 

1YJr85o.jpg

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

Good morning,

 

If you want to put a background colour in the centre part of your shop then in global.css around line 41 you will see this:

 

#page {}

 

#header {z-index:10}

#columns {z-index:1}

#left_column {}

#center_column {background-color: red;}

#right_column {}

#footer {}

 

This will change the centre column colour to red, of course you would be better to use hexidecimal colours #xxxxxx

 

You could use grid_prestashop.css but I think this will probably change the heading colour as well.

 

For the 2nd question I believe you will need to go to modules > positions, to effect changes

 

Hope this helps a little

 

Paul

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

I checked what you told me skunk and you were almost spot on. I had to change the #columns {z-index:1;background:url(../img/whitebg.png);} to get the background around the whole box. But I checked in the modules>positions and don't see anything on moving the welcome, cart, and all that. Any other suggestions?

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

that helps so much, paul and pascalvg you are a life savers. That fixed the problem with the search bar, now all I gotta does is move the rest of the page down which I hope wont be to hard to find and then I should be set. Thank you so much for all the help.

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

hmmm, not sure if this works, but give it a try (backup/copy global.css first):

 

 

 

first: (global.css around line 553)

 

#header_right {

position: relative;

width:100%; <-- add this line

float: right; <-- Not needed anymore, as width of block is full width

}

 

then

 

 

 

 

#search_block_top {

position: absolute;

top: 74px;

right: 0px; <--- change to this, N.B. changed to right!!)

}

 

that should do the trick what you asked for.

Pascal

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...