Open old ticket

Could you please open this ticket again? I think there are a few display issues… like the logo is missing on the home page, and the navbar isn’t sticky on mobile devices… http://ovpp.robstrickland.net/ (cache cleared)

Thank you!

Hi Rob,

What is the title of the topic you re referring to?

Also could you please provide more information about the issue on this new topic, so we can carry on here?

Thank you

sorry about that… the link was converted to show the last comment by you…

click here to view the thread

Hello @Rob_Strickland,

Thanks for that link. As mentioned by @Joao, we’ll be happy to assist you here with anything further you might need. After old threads are closed out automatically, we like to try and keep those closed so they remain as they are and do not continue to grow or splinter off into other topics as the longer a thread gets, it becomes very difficult to keep up with by all individuals involved. Please feel free to provide any details here that you need assistance with and we will be happy to help.

Cheers!

Thank you… I have provided above in my post (here)

the logo is missing on the home page, and the navbar isn’t sticky on mobile devices…

Thank you!
Rob

Hi Rob,

Please provide your login credentials in a secure note so we can take a closer look.

Thanks!

Hi there,

This code custom code is causing the logo not to display on desktop:

.home .x-navbar .x-brand img {
    position: absolute;
    transition: height 0.35s ease;
}

Please try removing the position absolute rule.

As for making the navigation bar fixed on mobile, please add this code:

@media (max-width: 979px) {
    .x-navbar-fixed-top {
        position: fixed;
    }
}

Also, the logo file you are using seems to be very huge and it’s only loading a small image. It would help your page load speed if you resize the logo file close to the size that you actually need.

Hope this helps.

Thanks, I will resize that image - good tip.
Regards,
Rob

You’re welcome, glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.