• Resolved Nirmal Kumar

    (@onlinerockers)


    Could you tell me how to change the font size of the paragraphs? The font is too small and difficult to read on the desktop.

Viewing 13 replies - 1 through 13 (of 13 total)
  • You should be able to change the font size with html.
    Go to the page or post you want to change and put the tags for font around the text area you want to affect by it ( <font size=”#”></font> ).
    <font size=”1″>Font size 1</font> <font size=”10″>Font size 10</font>

    You should do this with a custom css plugin or with a child theme. Do not edit any code in your theme. If you edit the theme code it will be overwritten when the theme updates. Also, The font tag is not supported in html5. You should include a link to your site so we can see the problem. Otherwise, we will only be guessing.

    The css command to change font size is font-size:<<size>>

    Yes you can also do it with the CSS which makes sense if you want the change for more than just one page.
    @mrtom414
    Now I’m confused.
    Changes on a pages contents formatting will be gone with an update for the theme, but changes in the stylesheet for the theme will stay with an update for the theme?
    Why? How does that make any sense?

    if you use a custom css plugin you can change the styles. If you make changes to style.css you stand a good chance of having them overwritten. Plugins and themes are stored in different directories. Updating a theme doesn’t effect the plugins.

    Ah, ok, I got this one.
    But… what about the changes in the pages content? Why are they deleted when the theme is updated?

    The content should never changed it stored in a database. The pages are assembled with the content and the theme and plugin. They are all housed in different areas of wordpress.

    Changes made to the theme will effect how the content is displayed but will not delete any content. The plugins control functionality it should be totally independent of the theme. It really a bad ideal to use a theme that controls any functionality other than appearance.

    All functional actives should be controlled by a plugin and any visual displays by the theme. If you really want to learn about theme programming I would suggest the courses at lynda.com. Morten Rand-Hendriksen does a great job at teaching this subject. I’ve watched many of his courses and have learned a lot.

    Hi @onlinerockers,

    I hope you are well today and thank you for your question.

    You can try changing the size of paragraph by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

    .entry-content p {
        font-size: 15px;
    }

    Please change the font size 15px in the above code to whatever you want to set.

    Best Regards,
    Vinod Dalvi

    Thread Starter Nirmal Kumar

    (@onlinerockers)

    Thank you, @vinod-dalvi . It’s working well now.

    Thread Starter Nirmal Kumar

    (@onlinerockers)

    But still, the bulleted points look small. I tried making changes to the code you provided by replacing p by ul li . But, still, it doesn’t work.

    Could you please share me the page URL from your site where it is displaying so that i can help you to increase its size?

    Try using the below CSS code to change the size of bulleted list.

    .entry-content ul{
        font-size: 18px;
    }
    Thread Starter Nirmal Kumar

    (@onlinerockers)

    Thank you @vinod-dalvi , got it fixed.

    You are most welcome here ??

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘How to change the font size for paragraph?’ is closed to new replies.