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

    Hi,

    I would like to redesign the way the elements are stacked in the footer when in smaller windows, like tablet and mobile. Also to hide some elements. Where can I do this?

    /Hanna

    #1298610

    Hey Hanna,

    This can be done via css. Do you have a link to the site/page in question.

    Best regards,
    Jordan Shannon

    #1298945

    Ok. Yes, the footer is the same on all pages (or should be) so it should be one fix for all pages on the site showing the footer.
    See Private Content for site and login.

    #1299233

    Hi,

    Thanks for that. What exactly would you like to change on mobile/tablet sizes?

    Best regards,
    Rikard

    #1299626

    Hi,

    On window sizes below 1088px wide, I would like to hide the Footer Widget “Footer – column1” (with two images/logos).

    #1299924

    Hi,

    I added following code to bottom of Quick CSS field

    /* Hide 1st footer column below 1088px and adjust the rest */
    @media only screen and (max-width: 1088px) { 
    #footer .flex_column.first { 
        display: none; 
    }
    #footer .flex_column:nth-child(2) {
        margin-left: 0;
    }
    #footer .av_one_fourth {
        width: 29.3%;
    }
    }

    Please review your website :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.