• Hello. I want to add/remove a logo next to, (left side), the menu icons on the top of my page. I tried looking at header, but cannot find a way to do it, as well as every location it allows. How can a picture be added/removed in this area?

    I used a plugin that replaces all pictures with a new one automatically. I replaced the old one and deleted it. It changed correctly on the footer, but next to the menu selection it just shows like you can see on the website.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • you could add the below in your Additional CSS:

    
    .q_logo img {
        display: none;
    }

    this’ll stop it displaying, you can always remove if you later decide to add a logo.

    The actual code is in style.css

    
    .q_logo img {
        display: block;
        opacity: 1;
        position: absolute;
        top: -50%;
        width: auto !important;
        max-width: none;
        -webkit-transition: opacity .6s ease-in-out;
        transition: opacity .6s ease-in-out;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Add a Picture next to the menu selections’ is closed to new replies.