Different mobile logo

Posted in: Newspaper
Post count: 8

Hi. Could you please suggest me how to insert a different logo for mobile users? Currently your theme resizing the main logo and inserting it to the right side on mobile screen. My logo doesn’t look good on mobile screen so I want to make it more neat.

Thanks

Post count: 31

Did you follow the suggest size requirements/suggestions for the logo? I have no problem on mobile and desktop screens.

Theme Panel -> Header -> Logo

Logo

Post count: 8

I did. My logo looks good on PC, but it includes some text and graphics, so when theme resize it, it doesn’t look good on mobile. I want to make simpler version.

Post count: 31

You could try looking in the style.css located in the theme folder

CSS

You could try setting the background image to a separate logo LINK

Post count: 31

may have to make the change the z level to ensure it is on top.

Post count: 8

Thanks adgower.
Unfortunately I’m not a CSS expert 🙂
Anyway, I would like to hear from dev team about the solution.

Thanks in advance.

Post count: 854

response via email
Radu A

Post count: 39

Any chance I could get that solution as well? Thanks!

Post count: 170

me to?

Post count: 8

Hello kazantipman

Look in the Style.css
Line 668-685

You have to find this code

@media (max-width: 767px) {
.mobile-logo-wrap img {
width: 170px;
position: absolute;
right: 10px;
top: -3px;
display: block;

Just add z-index: 9999; in the end, after display: block;
it should be like this

@media (max-width: 767px) {
.mobile-logo-wrap img {
width: 170px;
position: absolute;
right: 10px;
top: -3px;
display: block;
z-index:99999;

AND SORRY FOR MY ENGLISH, JUST TRYING TO HELP 🙂
BaBa Baker

Post count: 3343

Hello @kazantipman
Please can you give us your site URL to take a look. To adjust the logo for mobile you can modify here: http://screencast.com/t/Ui1OINySbJ in style.css

Thanks all for support!

Viewing 11 posts - 1 through 11 (of 11 total)
You must be logged in to reply to this topic.