Changing Font size for Paragraph

Hi,

I would like to change the font size for the Paragraph since it is really small when opened in a mobile phone. Would also like to change the spacing if required to improve readability. Please help me with the code.

Thank You.

Hi @sanu2405,

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

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Travelify Other Options

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

Best Regards,
Movin

Hi Movin,

Thank You. The code works.
However, it did not change the size of the bulleted text. I would like to change the size of the font in the bullet text to the same size as paragraph.
I checked it on the mobile device and there is no change in the font size.

Please help.

You are most welcome here :slight_smile:

In your initial reply you said you want to change the font size for the Paragraph so i provided the CSS solution to achieve that.

If you also want to change the size of bulleted text in the list then use the below CSS code.

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

Thank You Movin. It works beautifully.

While I see the change in the website, I do not see the change in the mobile devices. Is there a simple way to change the rendering on mobile or we have to just live with it.

Warm Regards,
Sangeeta

You are most welcome here :slight_smile:

The shared code should work on mobile devices also but if it doesn’t then try using below CSS code instead.

#main .entry-content p {
    font-size: 15px !important;
    margin-bottom: 20px !important;
}
#main .entry-content li {
    font-size: 15px !important;
}