Jump to content

[SOLVED] Changes in prestashop default themes


Recommended Posts

Hi, decided to change small things in the default theme.

 

-I like to move the logo in the midle of the header and make it bigger (perhaps change it as a headder background image if thats possible and easy)

-Change the search bar to the places where can be seen on the picture added

-And increase/Darken the left menu fonts.

 

 

thanks

kenko

 

im using 1,5,6,0, website is life on decobal.com

changed some things in global.css, blocktopmenu and blockreissurance as you can see.

 

 

post-523887-0-86806400-1385361844_thumb.jpg

Link to comment
Share on other sites

to move logo you can change its position with css styles.

global.css file line 547

there is a code like:
 

#header_logo {
position: absolute;
left: 0;
top: 30px;
z-index: 1;
}

increase left param, you can use for example 400px; so your logo will be moved to the right.

  • Like 1
Link to comment
Share on other sites

sorry for the silly question, but did you say the search bar? thats the user info :o

 

i managed to do some changes that i dont dislike so i am happy so far, many thanks any way.

 

trying to figuere out the font size and darkness.

 

regards

 

ps: I like the home slider module from your website. :)

Link to comment
Share on other sites

To change the font size and color in the left menu go to /themes/<mytheme>/global.css, line numer about 1960 and modify or add lines in red below:

/*************** Block CATEGORIES ***************/
#categories_block_left  li {border-bottom:1px dotted #ccc}
 #categories_block_left  li.last { border:none;}
  #categories_block_left  li a {
   display:block;
   padding:7px 11px 5px 22px;
   
   font-size: 13px;
   font-weight: bold;

   color:#333;
   

background:url(../../../modules/blockcategories/img/arrow_right_2.png) no-repeat 10px 10px transparent
  }

  • Like 1
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...