Footer Header Font Size on Mobile

Hi there, I'd like to get a CSS to adjust the footer Headings font size on mobile view.

http://ecd.elegantchairdesigns.com/

Thabks


Comments

  • Hello,

    Please, try the following CSS code:

    @media (max-width:767px){
       #Footer .widget_text{
          font-size: 17px!important;
       }
       #Footer .widget_text h4{
          font-size: 23px!important;
       }
    }
    

    Thanks

Sign In or Register to comment.