• Resolved morenikeji

    (@morenikeji)


    Good afternoon,

    Please excuse my question as I am new to WordPress.

    I have been able to edit the footer text via the theme editor, however, I would like to change the color, height, and center the text. Are there any ways I can do that via 1) theme editor, or 2) addition CSS (or both)?

    All help is much appreciated.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello there,

    Try adding this CSS code to Appearance > Customize > Additional CSS from dashboard.

    
    .site-footer {
      background-color: #fff000;
    }
    
    .site-footer .site-info {
      margin-top: 10px;
      margin-bottom: 10px;
    }
    
    .site-footer .site-info,
    .site-footer .site-info a {
      color: #ff0000;  
    }
    

    Do your own adjustments as needed.

    Regards,
    Kharis

    Thread Starter morenikeji

    (@morenikeji)

    Hi Kharis,

    thank you so much for your quick response.

    That helped regarding the background color and text color.

    How can I center the text?

    Thanks again!

    • This reply was modified 5 years, 2 months ago by morenikeji.

    Try adding this CSS code:

    
    .site-footer .site-info {
      text-align: center; 
    }
    

    Regards,
    Kharis

    Thread Starter morenikeji

    (@morenikeji)

    Kharis,

    thank you so so much.

    I tried to do it myself, but forgot the ; after center. Learning something new every day.

    Thanks again, really appreciate your help.

    You’re welcome!

    Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Edit Footer’ is closed to new replies.