• Hello, I would like to increase the font size of the content of my text widget (About Me) the sidebar. I would also like to increase the font size of the titles of the sidebar- About Me, Archives, Categories, and make them bold.
    Could you please help me with CSS codes?
    Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    Thanks for asking. ??

    You can adjust it by accessing the WP admin -> Appearance -> Customize. Here just look at the menu on the left side and find the Additional CSS section and paste this code inside:

    .widget-title {
        font-size: 32px !important;
        font-weight:bold !important;
    }

    Then just replace the value of 32px with the desired font size in pixels and save changes.

    All the best. ??

    Thread Starter praneethagoutham

    (@praneethagoutham)

    Thank you, it worked. ???
    I also want to increase the font size of the text snippet and Read More link in the sidebar under ‘About Me’. Could you please share the code for this as well?

    Thank you.

    Hi,

    I’m glad to hear that the code works out. ??

    As for the text sizing, just paste this code after the previous one and save changes.

    .widget.widget_text .textwidget, .widget.widget_text .textwidget a {
        font-size: 15px !important;
        line-height: 18px !important;
    }

    Let me know the results.

    Thread Starter praneethagoutham

    (@praneethagoutham)

    It worked, thank you. ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Increasing font size of sidebar widgets’ is closed to new replies.