• Resolved Merylu

    (@merylu)


    Good afternoon.
    I need help because I can not find solution to my problem, I wrote several times in this forums but anybody give me any answer . I need to increase the font size in the widget area in the footer .
    I’ve done a lot of tests with different snippets , but all I ‘ve done is increase the size of the symbol “>” but not of the letter , which want to increase the size of nuestras tiendas, contacto, servicios, marcas, aviso legal. The web is http://www.armeriacastro.es
    Thanks I hope this time someone can give me the solution. I will apreciate a lot.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello following some CSS to put in your custom-css box or in your child-theme functions.php:
    Footer menu widget links and arrow :

    /* arrow before menu links */
    #footer .widget_nav_menu li:before {
        font-size: 50px;
    }
    /* menu links */
    #footer .widget_nav_menu a {
        font-size: 40px;
    }

    Footer widget links and arrow in lists:

    /* all kind of arrow before list items */
    #footer .widget ul li:before {
        font-size: 120px;
    }
    /* all kind of links in a list */
    #footer .widget li a {
        font-size: 50px;
    }

    Of course those values in pixels are just an example.

    Hope this helps.

    p.s.
    you might find the following resource useful in order to inspect your pages and find the correct CSS selector you need:
    http://doc.presscustomizr.com/customizr/browsers-dev-tools/

    Thread Starter Merylu

    (@merylu)

    Thank you so much @d4z_c0nf you always help me a lot, and give me the solution of my wordpress big problems. jejeje

    I have an other cuestion, this is not as important as the one I already ask you, but I would like to know if there are the posibility, I guess there are, to move a little bit the widget links and arrows to the right, but keeping your left aligment. I found a snippet to move the aligment to the right, left, or center but I do not want to change the alignment , I like to the left, but move a little to the right to center in the footer.
    I don’t know if you get it?

    You’re welcome 😉
    Something like:

    #footer .widget_nav_menu li {
        margin-left: 10px;
    }

    for all the list items of the widget nav in the footer.
    With :

    #footer_one .widget_nav_menu li {
        margin-left: 10px;
    }

    you style just the ones in the first footer widget area,
    use #footer_two or #footer_three instead to match just respectively the second or the third.

    Hope this helps.

    Thread Starter Merylu

    (@merylu)

    Thanks once again.
    Eres la caña de España jajaja.
    so I would say in Spanish, means you are great.

    😀
    Thanks Merylu for your kind words.
    Glad you solved 😀

    p.s.
    would you mind marking this topic as resolved ? 😀

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘change the size of the font in widget area’ is closed to new replies.