Change size Footer

  • Unknown's avatar

    Hello,

    I want to change the size of a widget in my footer number 2.

    I try this: #tertiary p {
    font-size: 16px;
    }

    But it changes all the size of my footer and not juste a widget in the footer 2.
    Can someone help me please :)?

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

  • Unknown's avatar

    Each widget area has an ID with a number. For example, if you’d like to change the font size of the content in the widget titled “Ambulances Viganaises,” try the following:

    
    #tertiary #widget-area-2 p {
         font-size: 16px;
    }
    
    

    The other two footer columns are #widget-area-3 and #widget-area-4, respectively.

  • Unknown's avatar

    Thank you!
    And if i want to change only the columns 2 so this one #widget-area-3 but just the widget text with the phone number on this column?

    Thanks!

  • Unknown's avatar

    The following should work, as the phone number text has an ID of #text-8.

    #tertiary #widget-area-3 #text-8 p {
         font-size: 16px;
    }
    
  • The topic ‘Change size Footer’ is closed to new replies.