Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #580542

    Ahoy I was hoping you can help me make the mobile view of my site look a tad cleaner.

    Right now the button and phone number that I added to the “header” on the right overlaps the logo when I minimize…

    anyway to fix this?

    #581474

    Hi mcraig77!

    Thank you for using Enfold.

    I think its better if you hide the button on mobile view and then add it somewhere else. Maybe, below the slider? Will that work? You can toggle the display of the elements by using css media queries. Example here: https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263

    Regards,
    Ismael

    #581970

    I’m totally cool with hiding that header addition for mobile… and than adding a mobile button view. How would I do that exactly I was a little confused by the example…

    #582655

    Hi!

    As Ismale mentioned to hide and display elements please follow the post link

    If you need more control on ALB elements enable custom css class support and add custom class and target them via css http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    To push the button a little below so it won’t overlap the logo please add the below code to Enfold > General Styling > Quick CSS

    
    @media only screen and (max-width: 768px) {
    #header .widget {
        padding-top: 140px;
    }
    }
    

    Cheers!
    Vinay Kashyap

    #588578

    HI guys –

    Still having some issues with this. I added this code and enabled css

    @media only screen and (max-width: 768px) {
    .header { display: none !important; }}

    but the button is still there… I have to do this for a couple of sites I;m working on so If you can be as detailed as possible so I dont have to bug you again.

    #589762

    Hi!

    Please add following code to Quick CSS

    @media only screen and (max-width: 768px) {
    #header .widget .avia-button-wrap {
        display: none !important;
    }}

    Regards,
    Yigit

    #590041

    Thanks!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Mobile View overlapping’ is closed to new replies.