Tagged: 

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #516735

    Is there a way not too complicated to increase the text size in a “Text Widgets” included in a sidebar ?
    (I would like to increase its font size of 1 or 2 pixels)
    Thanks,

    #516827

    Hey AlainTernet!

    Surround the text with this.

    <span style = "font-size: 16px !important;">
    
    </span>

    Cheers!
    Elliott

    #516899

    Thanks Elliott, that work.
    But, now I try to justify the text, I try with this :
    <span style = "text-align: justify; font-size: 14px !important;">
    but something it’s not good. Probably my syntax ?

    I also use a menu a Custom menu widget in the same sidebar, Is it possible to increase the font size too ?

    #517432

    Hi,

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Regards,
    Rikard

    #517653

    Hi,
    Here are the login informations:

    #517898

    Hi,

    Thanks for the details but they are not working for me, could you check please?

    Best regards,
    Rikard

    #519033

    Oups, Sorry for the mistake. That work now.

    #519205

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    ul#menu-menu-mammouth a {
        font-size: 15px;
    }

    Cheers!
    Yigit

    #519627

    That work for increasing the menu font size, Thanks,

    But, I always have a problem to justify the text. I tried with this code
    but something it’s not right:
    <span style = “text-align: justify; font-size: 14px !important;”>

    #520328

    Hey!

    I guess you’re not noting it because justify kicks in when there’s actual text to “justify”, as the menu items labels aren’t filling the whole width it doesn’t take any effect, perhaps what you want is to add some space between letters:

    ul#menu-menu-mammouth a {
        font-size: 15px;
        letter-spacing: 3px;
    }

    Regards,
    Josue

    #520347

    The “justify” question is for the “Text Widgets” included in a the sidebar, not for the menu.
    I used the code from Elliott to increase the size, it’s ok but now I try to justify the text.

    #520496

    Hey!

    Try with this code:

    .textwidget {
        text-align: justify;
    }

    Cheers!
    Josue

    #520507

    Nice ! Thank you !

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Text Widgets font size’ is closed to new replies.