Tagged: ,

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #813662
    #814055

    Hey public_eye,

    Yo can make a square container and give it a border via css, that way you don’t need to change the image now or for mobile.
    Not sure what you are trying to achieve with the menu. Could you please attach a mockup of what you’re trying to achieve?

    This will center logo for mobile and make a logo look like you need:

    
    .responsive #top .logo a {
        height: 200px;
        border: 1px solid #fff;
    }
    html_header_sidebar .logo img {
        margin-top: 42px;
    }
    @media only screen and (max-width: 767px) {
      .responsive .logo img {
        margin: 0 auto;
    
    }
    .responsive #top .logo {
        width: 100%;
    }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive .logo img {
        margin: 0 auto;
    
    }
    .responsive #top .logo {
        width: 100%;
    }
    }
    

    Best regards,
    Victoria

    #814144

    Hey Victoria,

    Mobile is perfect thank you! … I think there was some confusion re the desktop .. the ‘square’ isn’t what I was wanting it’s getting the logo to sit in the center of that space … (have popped the private link below). I don’t need the actual border. Just the logo to sit centered within that square. The designer is specific about this as all the clients marketing items have a yellow square with the logo centered so she wants the exact same ‘look’.

    One other thing she has asked. I have found some css to remove the ‘flip’ animation from the homepage gallery and the ‘inspiration’ page gallery but now shes asking if we can have the same ‘fade’ in effect like the portfolio images on the portfolio page when it loads? Is this doable with some css as well?

    Much appreciated,
    Hally

    #814202

    Hi,

    To solve this, just add the following CSS code at Enfold Theme Options > General Styling > Quick CSS

    
    .html_header_sidebar .logo img {
      padding-top: 47px !important;
    }
    
    .responsive #top .logo a {
      border: none !important;
    }
    

    Best regards,
    John Torvik

    #814211

    Cool thanks that’s fixed the desktop but now affected the logo on the mobile layout?

    #814515

    Hi public_eye,

    Please remove !important from the code

    
    .html_header_sidebar .logo img {
      padding-top: 47px !important;
    }
    

    it will be very hard to adjust it for other screen sizes.
    Remove this code:

    
    .responsive #top .logo a {
      border: none !important;
    }
    

    and remove the line for border from the code I gave you

    
    .responsive #top .logo a {
        height: 200px;
        this one ---- border: 1px solid #fff;
    }
    

    and then get back to us, we’ll see what else needs to be adjusted.

    Best regards,
    Victoria

    • This reply was modified 7 years, 4 months ago by Victoria.
    #814723

    Heya Victoria,

    Okay have done that and the only issue now is the logo is appearing really tiny on the mobile layout.

    I was totally happy to not mess with this but the designer is adamant it has to look the way she wants on mobile and desktop :S

    #814832

    Hi,

    Add the following to enlarge the logo on mobile:

    @media only screen and (max-width: 767px) {
    .html_header_sidebar .logo img {
        padding-top: 0px!important;
    }
    }

    Best regards,
    Jordan Shannon

    #814943

    Thank you! Perfect.

    Much appreciated.

    #814976

    Hi,

    No problem at all. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Sidebar menu & Responsive Issues’ is closed to new replies.