Logo in menu

Posted in: Newspaper
Post count: 91

Hi

I’ve added the logo as a menu item that comes into view when I scroll down on the page (after following these instructions: https://forum.tagdiv.com/topic/moveplace-logo-in-menu-when-scrolled-down-and-menu-fixed/).

1. However, the image doesn’t show in the menu when I zoom in until the category menu button changes from three lines to nine small squares (mobile view). I would like the image to follow in the menu bar when I scroll down on a mobile device, as well.

2. How do I make the menu-image center-aligned? I’ve tried to modify the ‘display: block;’ line in CSS, but with no luck.

Thanks,
Are

Post count: 3343

Hi,
Can you show us a link to your site? to see the issue
Thanks!

Post count: 91

Hi

1.
– It looks like this on desktop: http://www.screencast.com/t/87nJU4mMgt
– When I zoom in (responsive mobile view), the logo disappears: http://www.screencast.com/t/JKWHWH03b
–> I would like the logo to show in mobile view as well.

2.
How do I center the logo in the menu? It currently looks like this: http://www.screencast.com/t/87nJU4mMgt

Thanks!

Post count: 3343

Hi,
1. If you use a logo in Logo section that should be on mobile like in our demo http://screencast.com/t/joWnovxu62Gv

2. You can align it manually for each device via CSS, using position relative and left.

Thanks!

Post count: 91

I am using logo in Logo section (http://www.screencast.com/t/jlBHzbkqRd),
but the whole point is to show the logo in the scroll-menu on desktop as well as on mobile.

I have followed your previously described steps to make the logo show in the menu when scrolling on desktop (see the screencasts in my original post). However, these steps have resulted in the logo to disappear from the scroll menu in mobile view.

Post count: 91

2. Thanks for the CSS advice. I’ve tried it out, and it looks great (http://www.screencast.com/t/DeYJSyxDZpF)… until I zoom in. The logo jumps to the right (http://www.screencast.com/t/TUHQptYM).

I’ve used the following CSS:

 .menu-item-37076  {
    position: absolute;
    left: 260px;
    right: 260px;
}

How do I make it centered, no matter what?

1. Zooming in further (mobile view), the logo disappears: http://www.screencast.com/t/KSoryFQcTRIB

How do I make the logo show in the menu bar, both on desktop AND mobile?

Are

Post count: 854

hi, what do you mean : you zoom it??
you need to use media queryes to do that.

also don’t use : left and right when you position: absolute;

use either left or right.

/* responsive monitor */
@media (min-width: 1200px) {
    .menu-item-37076  {position: absolute;left: 260px;}
}

/* responsive portrait tablet */
@media (min-width: 768px) and (max-width: 1018px) {
    .menu-item-37076  {position: absolute;left: XXXpx;}
}

/* responsive landscape tablet */
@media (min-width: 1019px) and (max-width: 1199px) {
    .menu-item-37076  {position: absolute;left: XXXpx;}
}

/* responsive phone */
@media (max-width: 767px) {
    .menu-item-37076  {position: absolute;left: XXXpx;}
}

replace the XXX with the size that you want

Thanks for you message.
Radu A.

  • This reply was modified 12 years by Radu A.
Post count: 91

Thanks for the CSS codes Radu.

The question still remains: How do I make the logo visible in the menu bar when scrolling, both on desktop AND mobile?

In your demo, the logo is visible in the menu when scrolling in responsive mode (mobile), but not when scrolling on desktop (see the images in this post: https://forum.tagdiv.com/topic/moveplace-logo-in-menu-when-scrolled-down-and-menu-fixed/)

I have followed Marius’ steps to make the logo visible as an image in the menu when scrolling on desktop. It works great (see http://www.screencast.com/t/DeYJSyxDZpF).

HOWEVER, this fix has made the logo in the menu disappear in responsive mode (see http://www.screencast.com/t/KSoryFQcTRIB)

Thanks for helping me out!

Are

Post count: 3343

Hi,
I don’t know why on your screenshot on mobile the logo is not there like in our demo. AS you can see on our demo everything works fine.
Please give me your site URL to inspect the issue. Something went wrong there.

Thanks!

Post count: 91

Hi. It stopped working after I followed the steps to make the logo visible as an image in the menu when scrolling on desktop (as described by you here: https://forum.tagdiv.com/topic/moveplace-logo-in-menu-when-scrolled-down-and-menu-fixed/). The only difference is that I’m using the 3rd logo option, not the default option (as in the demo).

I’m developing the site locally, so I don’t have an URL for you.

Post count: 854

hi,
please take a look at the example in pour demo, there is working.

Thanks for you message.
Radu A.

Post count: 91

But your demo doesn’t support the logo in the menu on desktop (not mobile) when scrolling. That’s the whole point. How do I keep the setup you have in the demo, while also adding the logo in the menu when scrolling on desktop? Thanks for taking the time helping me out : ) Are

Post count: 91

Radu and Marius: The logo shows in the menu when scrolling on mobile if I choose “Header Style 1” (as in your demo).

It doesn’t work if I choose “Header style 3”, which is the one I’m using. This must be a bug?

Post count: 3343

Hi,
Ups, yes, seem that is a bug, we will fix this.

Thanks!

Post count: 91

Ok. Please let me know when you have a fix!

Best,
Are

Post count: 3343

Hi,
Is on our issue tracker, we will fix it ASAP.

Thanks!

Post count: 91

Just updated to 3.2. Did you fix this yet (doesn’t look like it…)?

Are

Post count: 3343

Hi,
It wasn’t fixed, we are sorry about that, we don’t managed to fix it in this update, please can you wait for the next update, or i will try to fix it in a patch for you.

Thanks for your patience!
Have a nice day!

Post count: 91

Ok. When’s the next update coming? It would be nice to get this issue out of the way…

Post count: 3343

Hi,
We decided to let this as it is now because the style 3 is made to be used to have instead of the logo a full background image for the header, and on mobile that part should stay on top, not on the menu bar.

I will tell you how to make it in your case:

Edit like here: http://screencast.com/t/DcFjrG1zeEWp

Add this CSS in Theme panel -> Custom CSS

/* responsive phone */
@media (max-width: 767px) {
 .td-full-logo {
    display: none;
 }   
}

Hope this will be ok for you.
Thanks for your message!

  • This reply was modified 12 years by Marius.
Post count: 91

THANKS!

Post count: 91

One more thing:

As I mentioned in the start of this thread, I’ve added the logo as a menu item that comes into view when I scroll down on the page (after following these instructions: https://forum.tagdiv.com/topic/moveplace-logo-in-menu-when-scrolled-down-and-menu-fixed/).

The top of my site should look like this when I enter:

However, sometimes it shows the logo in the menu when loading:

The logo is only supposed to be visible when scrolling. You’ve given me this css to make that happen:

.menu-item-37076 {
display: none;
}

Thanks for the superb support!

Are

  • This reply was modified 12 years by atflaten.
Post count: 3343

Hi,
I have to inspect your site to see the issue, give me your site URL, I’ve tried http://www.amerikanskpolitikk.dev/ but not working.

Post count: 91

Yes, the site is developed locally…

Post count: 3343

Hi,
You need to inspect it with Chrome or Firebug from Firefox. Do you have CSS knowledge?

I will help you but i need to inspect your site to see what is there.
Thanks!

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