Jump to content

[SOLVED] Image width in theme configurator


Recommended Posts

I have created a new "hook top" in theme configurator and added an image which is the width of the site.

 

Can someone tell me how to get it to display at it's fill width? It looks like it is part of 3 columns. Can I make this 1 column right the way across?

 

Screen grab attached to show you what I mean.

 

Thanks

 

 

post-789936-0-51358300-1399227523_thumb.jpg

Link to comment
Share on other sites

In yourdomain/modules/themeconfigurator/css/hooks.css find this:

 

#htmlcontent_top {
    float: right;
    max-width: 391px;
    padding-left: 5px;
    width: 33%;
}

Remove max-width: 391px; and change width to 100%

Link to comment
Share on other sites

@media (max-width: 767px)
#htmlcontent_top ul li {
float: left;
padding-left: 5px;
padding-right: 5px;
width: 50%;
}

use there width:100% instead of width 50%;

it's a part of /modules/themeconfigurator/css/hooks.css file

Link to comment
Share on other sites

That works perfectly, also added a padding-bottom: 15px to make a gap before the new arrivals button.

 

Have to say, this forum is certainly providing the answers when I get stuck. Really impressed with PrestaShop :)

Link to comment
Share on other sites

×
×
  • Create New...