center text to align with photo

  • Unknown's avatar

    On second footer widget area, I would like my text to be centered to the photo on its left. Is this possible?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hey @afinocchiarophoto !

    To horizontally center the text to your photo, you’ll need to add this css code to your Custom CSS.

    aside#text-2.widget.widget_text{
       margin-top: 2.57em;
    }

    If you want the text vertically centered you can add this code:

    aside#text-2.widget.widget_text{
       text-align:center;
    }

    PS: In case you want the text both vertically and horizontally centered just add both attributes to you custom css :]

    aside#text-2.widget.widget_text{
        margin-top: 2.57em;
        text-align:center;
    }

    Does that answer your question?

    Best!
    Darlan Ricardo

  • The topic ‘center text to align with photo’ is closed to new replies.