Jump to content

[solved] Updated to 1.5 logo and issue


Recommended Posts

I recently updated the prestashop i'm working on as a freelancer and I'm relatively new at this as I'm still currently in school for design. When I updated the logo header is now over top of the menu and home page slider how do I get it to go back above the menu?

 

 

I am using the default prestashop theme and have not changed any coding.

Link to comment
Share on other sites

I am also unable to enable the SSL cert for the site, even though I have the SSL certificate and have the ssl address in the prefrences. When I go into the general prefrences and click to enable the SSL I get an error page.

Link to comment
Share on other sites

I found your solution and am in global.css

 

Your solution says to add the following:

 

to the #columns add: margin-top: 70px;

#columns {

margin-top: 70px;

}

 

to #header_right add top: 75px;

#header_right {

top: 75px;

position: relative;

float: right;

}

 

from #header_logo remove top:30px;

#header_logo {

position: absolute;

z-index: 1;

}

 

 

Is there a way you can provide me with the line numbers where I would find these so I can edit them? Are they the ones right at top under the "structure" on lines 40-50 or is it under the "header" on lines 546-550

Link to comment
Share on other sites

i mean that you have to follow nadie instructions.

but i checked your website, here is the solution:

open file: /modules/blocktopmenu/css/superfish-modified.css

you've got there:

 

.sf-contener {
clear: both;
}

 

add this: margin-top: 280px;

 

final code:

 

.sf-contener {
clear: both;
margin-top: 280px;
}

 

 

please follow forum rules - one thread - one question:

1 Topic = 1 Subject or 1 Question

- If you have more than one question, open more than one new topic!

- Do not ask your question on a thread that doesn’t deal with the exact same matter. Open a new thread, it’s alright to do so.

Link to comment
Share on other sites

Really don't want to start a new topic since this is the same issue, depending on the page I select the logo changes positions. Sometimes it is in the right place and sometimes it is covering the menu.

 

Is there a way to fix this, as my customer will not appreciate me just saying that it fixes itself when you refresh. I didn't have these issues with the 1.5.1 version! I updated hoping the new version would fix my shipping issue and now I have this issue too

Link to comment
Share on other sites

but this isn't issue, it's related to the css styles of the template. If you want to customize template - you have to customize css styles. in this case it's necessary. When you use logo in different size than size of the default logo - you have to customize theme.

 

in this case you can do it easily, just change the top:30px; to top:10px;

 

I'm talking about:

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

Link to comment
Share on other sites

×
×
  • Create New...