Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #328690

    I love the new update but it caused a couple of small issues with my website that I need some help fixing:

    1. Social icons are in gray but show up in white when the website is viewed on a mobile device. How do I make them remain gray on every screen size?
    2. Logo used to center on mobile devices (iPhone) but does not anymore. I want it to center in portrait and landscape mode on screen sizes up to the size of the new iPhone 6+
    3. There is now a thin gray line above my logo. How do I remove?
    4. How can I add a little more padding on the bottom of the header above the slideshow?

    Thank you in advance!

    #329437

    Hey!

    Try adding this code to the Quick CSS:

    #header_meta {
        border: 0;
    }
    
    .responsive #top #header_meta .social_bookmarks li{
        color: gray;
    }
    @media only screen and (max-width: 767px) {
        #header_main{
            padding-bottom: 20px;
        }
        .responsive .logo{
            float: none !important;
            width: 165px;
            margin: 0 auto;
        }
    }
    

    Cheers! 
    Josue

    #329441
    This reply has been marked as private.
    #329443

    Hey!

    Your logo has white space at the left, you can use this code if you don’t want to remove that:

    @media only screen and (max-width: 767px) {
        .logo img {
            left: -20px;
            position: relative;
        }
    }

    Regards,
    Josue

    #329445

    That fixed it! Thanks again for the awesome support!

    #329452

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Issues after update to version 3.0’ is closed to new replies.