[Resolved] How to get a menu where the menu is right next to the logo on the left hand side

Home Forums Support [Resolved] How to get a menu where the menu is right next to the logo on the left hand side

Home Forums Support How to get a menu where the menu is right next to the logo on the left hand side

Viewing 15 posts - 16 through 30 (of 34 total)
  • Author
    Posts
  • #892548
    Andrew

    I just exported a black version of the logo in an SVG format in Photoshop…

    Would that work?

    #893829
    David
    Staff
    Customer Support

    You may find its still only a JPEG / PNG wrapped inside an SVG

    #901002
    Andrew

    Hello David,

    I am struggling to get an SVG done for this.

    Is there no other way around this?

    Would really appreciate your help/input as i am totally stuck πŸ™

    Happy to give you access to the site in question

    #901006
    Andrew
    #901236
    David
    Staff
    Customer Support

    Right so lets try filters – not sure if it will be compatible on all browsers but….

    1. Remove this CSS so the search isn’t getting in the way:

    .main-navigation li.search-item {
        float: none !important;
    }

    2. Add this CSS:

    @media (min-width: 1024px) {
        .main-navigation:hover .navigation-logo img {
            -webkit-filter: invert(1);
           filter: invert(1);
            transition: 0.2s ease-in;
        }
        .main-navigation:hover {
            background-color: #ffffff;
            transition: 0.2s ease-in;    
        }
        
        .main-navigation:hover ul li a {
            color: #000000 !important;
            transition: 0.2s ease-in;    
        }
        
        #sticky-navigation .navigation-logo img {
            -webkit-filter: invert(1);
           filter: invert(1);
        }
    }
    #901721
    Andrew

    You beautiful man! It worked! Thanks πŸ™‚

    The only problem now is the search is over on the right. http://prntscr.com/npgv1e

    #901753
    David
    Staff
    Customer Support

    Never been called that before πŸ™‚

    Try this CSS:

    .main-navigation li.search-item {
        float: left !important;
    }
    #901784
    Andrew

    Haha! That seems to have done the trick! Many thanks for your assistance David! All the best for the coming weekend!

    #901789
    David
    Staff
    Customer Support

    Awesome – glad to be of help

    #902447
    Andrew

    Hi David,
    Just noticed something. The page which is active is blacked out…

    Any ideas?

    http://prntscr.com/nptop4

    #902465
    David
    Staff
    Customer Support

    You need to change the current background color in Customizer > Colors > Primary Navigation

    #902531
    Andrew

    How do I fix the menu on mobile? Any idea?

    https://www.nicemedia.co.uk

    #902545
    David
    Staff
    Customer Support

    Edited the CSS here so it only applies to Desktop

    #902548
    Andrew

    This video may make it clearer. It does the same on both mobile and tablet

    https://www.loom.com/share/583c17572eef4b96a1fe1c0b6c86e553

    Thanks David.

    #902550
    David
    Staff
    Customer Support

    See my reply above πŸ™‚

Viewing 15 posts - 16 through 30 (of 34 total)
  • You must be logged in to reply to this topic.