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

    Hi guys

    I have a 3 column footer and I need to put a 2 column div under the footer columns and above my socket.

    The first column needs to be around 70% width and goes across 2 of my footer columns and just includes some text and floated to the left and the 2nd column includes an image and this should be floated right.

    I have put the link to a screenshot of how i’d like the footer in the private content box.

    Many thanks in advance for your help.

    Dan

    #855406

    Hey,

    Please go to Enfold theme options > Footer and choose to display 5 columns in footer and then add following code to Quick CSS in Enfold theme options > General Styling and adjust the values as needed

    /* 5th column */ 
    #footer .flex_column:nth-child(5) {
        width: 24%;
    }
    /* 4th column */ 
    #footer .flex_column:nth-child(4) {
        width: 70%;
        margin-left: 0;
    }
    /* First 3 columns */ 
    #footer .flex_column:not(:nth-child(4)):not(:nth-child(5)) {
        width: 29%;
    }

    Best regards,
    Yigit

    #855416

    Thank you Yigit, that works perfectly.

    Only a small problem, I have put the link to my page in private area, would you please tell me how I can move the logo on the bottom right and the text “We recommend calling to check we are here before coming as we may be out on site visits.” up closer to the 3 columns I had previously.

    Also would like to remove the padding BELOW the logo on the bottom right corner.

    Many thanks I appreciate your help.

    #855420

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    #footer .flex_column:nth-child(4) .widget, #footer .flex_column:nth-child(5) .widget {
        margin: 0;
    }
    

    Best regards,
    Yigit

    #855423

    Perfect, thank you very much

    Regards

    Dan

    #855424

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Section below footer’ is closed to new replies.