Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #20061
    Sebastian
    Member

    hy again. i use just one of 3 footer areas but more or less over the whole side. and to make it a bit more nice, i like to make the font bigger. is there any Custom CSS for? Bigger size and fat 😉

    thanks
    seb

    #20070
    Sakin
    Keymaster

    @Sebastian: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    /* For footer Widget Title */
    #supplementary .widget-title { font-size: 20px; }
    /* For footer Widget Content */
    #supplementary .widget { font-size: 14px; }

    Note: When you increase the font size you need to change to all responsive design smart devices.

    @media screen and (max-width: 1060px) {
    /* Add here css for maximum screen size of 1060px */
    }
    @media screen and (max-width: 960px) {	
    /* Add here css for maximum screen size of 960px */
    }
    @media screen and (max-width: 767px) { 
    /* Add here css for maximum screen size of 767px */
    }
    @media screen and (max-width: 480px) { 
    /* Add here css for maximum screen size of 480px */
    }
    @media screen and (max-width: 320px) {
    /* Add here css for maximum screen size of 320px */
    }
    #20095
    Sebastian
    Member

    mhh so.. ok. so there´s one font size for all.. (responsive design) ?

    and if i add your CSS… especially that in the box..

    @media screen and (max-width: 1060px) {
    /* Add here css for maximum screen size of 1060px */
    }

    @media
    screen and (max-width: 960px) {
    /* Add here css for maximum screen size of 960px */
    }

    @media
    screen and (max-width: 767px) {
    /* Add here css for maximum screen size of 767px */
    }

    @media
    screen and (max-width: 480px) {
    /* Add here css for maximum screen size of 480px */
    }

    @media
    screen and (max-width: 320px) {
    /* Add here css for maximum screen size of 320px */
    }

    i still have to add the CSS for every size? or is the box obove all i need to copy and paste?

    /* Add here css for maximum screen size of 480px */

    is this right or must i add the size?

    #20104
    Sakin
    Keymaster

    @Sebastian: I give you the upper CSS without !media screen for default font size. Then if you want to change only for specific or various screensizes then you need to add that font css in those media screen as well.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change fontsize in footer area one’ is closed to new replies.