Tagged: ,

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #624191

    Hi,

    We have 2 columns set for our footer. In the second column, we have placed a social media widget.

    What Quick CSS can we use to align both footers either to centre alignment or right alignment (we haven’t decided which we’d prefer yet)?

    As you can see in the attached snapshot, both columns are left aligned by default, which is what we’d like to change.

    Thanks

    • This topic was modified 7 years, 11 months ago by 500Webmaster.
    #624333

    Hi 500Webmaster!

    Please share the link to the page where we can inspect the element in question and help you resolve it :)

    Regards,
    Vinay

    #625582

    Sure

    #625603

    Hey!

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

    #footer #yasip-2 {
        float: right;
    }

    Best regards,
    Yigit

    #625611

    Hi Yigit,

    That works for the second column, not the first? We’d like both columns to be changed.

    Thanks

    #625613

    Hi!

    Please change the code to following one

    #footer .flex_column {
        float: right;
    }

    Best regards,
    Yigit

    #625619

    Hi Yigit,

    For some reason that flips the content and puts content from the first column into the second and vice versa.

    #625625

    Hey!

    Please use following code instead

    #footer .flex_column {
        text-align: right;
    }

    Cheers!
    Yigit

    #625641

    Thanks Yigit, that works!

    Just for interest sake, I tried changing the code for center alignment:

    #footer .flex_column {
    text-align: center;
    }

    – but again only one column was affected. Is there a way to fix this?

    Thanks

    #625643

    Hey!

    Please add following code to Quick CSS instead

    #footer .widget {
        text-align: center;
    }

    Regards,
    Yigit

    #625655

    Perfect, thank you!

    #625660

    Hi!

    You are welcome!
    Let us know if you have any other questions or issues :)

    Regards,
    Yigit

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Footer Column Alignment’ is closed to new replies.