Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #430911

    Hello,

    I’d like to line up my footer columns (I’m using 1, 2, and 4). Column 1 has the title and the others do not, and I need the text in column 2 to line up with the text in column 1. (Right now it’s lining up with the title instead)

    I have used the css in both the general styling and the editor along with putting !important in it as well and nothing happened:
    #footer .flex_column:nth-child(2) .widgettitle {
    opacity: 0;
    }

    Please help!

    Thanks!

    Rebecca

    #430919

    Hi Rebecca!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #footer .flex_column:nth-child(4) {
      padding-top: 25px;
    }

    If that too does not help, please post temporary login so we can see your site. Currently “coming soon” is active.

    Best regards,
    Yigit

    #430932

    Oh, shoot! Sorry about that! Forgot it was set for the ‘Coming Soon’ page lol.

    That worked though! Thanks a lot, Yigit. So for the responsive part, I would just remove the padding-top, obviously, right?

    Thanks so much.

    #430939

    Hi!

    No worries at all :)
    Please use media queries as following

    @media only screen and (min-width: 769px) {
    #footer .flex_column:nth-child(4) {
      padding-top: 25px;
    }}

    Cheers!
    Yigit

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