Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter vortex10

    (@vortex10)

    Up

    Hey there vortex10,

    Hope you’re well today!

    Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    http://wordpress.org/plugins/simple-custom-css

    .flex-container {
    margin-top: 0 !important;
    }
    
    .site-logo {
    position: absolute;
    z-index: 1;
    }

    This should display the slider and logo as on your image.

    Hope this helps 🙂

    Cheers,
    Bojan

    Thread Starter vortex10

    (@vortex10)

    Thanks for the answer Bojan, that was one of the things i tried however when u resize the window, or call the site in a mobile device, the logo destroy the theme

    Hey again,

    You can override the settings for smaller resolutions. As I can see your menu breaks to icon one on 1000px and less so you can place a logo above the navigation on resolutions 1000px and less. To do that you’ll have to use media queries, here is what you should add:

    @media screen and (max-width: 1000px) {
    .site-logo {
    position: relative;
    }
    }

    This should fix the logo position on smaller resolutions.

    Hope this helps 🙂

    Best regards,
    Bojan

    Thread Starter vortex10

    (@vortex10)

    Mate really thank u 😉 i am kinda new working with responsive sites ure help was very important 😉

    Glad I could help 🙂

    Cheers,
    Bojan

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘[Theme: Adamos] Slider’ is closed to new replies.