I NEED A CSS FIX

Posted in: Newspaper
Post count: 555

It seem after all these years the settings of fonts size for pages in the control panel still don’t take effect, will can i have a css fix to make the fonts on my static page to 16px, because the default size is way to small on the eyes..

Post count: 9544

While waiting for tagdiv, try using the F12 console ‘inspector’ in Chrome to highlight the section of text to see the CSS ‘classes’ for that.

I also will be doing this on Newsmag, which I just figured out would be this:

.td-page-content p{font-size:16px;line-height:1.6em;}

Post count: 555

Thanks but that code have no effect…

Post count: 9544

Yep, so go look at the CSS used for a ‘page’ in Newspaper.

Use Chrome F12 to highlight the block of the paragraphs, find the class name for the page content without padding wrapper, and that is class to target along with paragraph.

Or, wait for TagDiv to help you. But good to learn to do some stuff like this on your own, for “control” of making your own mods.

Good luck!

  • This reply was modified 9 years by simchris.
Post count: 23312

Hello Steven,

You will have to use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.

.td_block_text_with_title p, .td_block_text_with_title{
font-size:11px!important;
};

The result -> http://screencast.com/t/DnRSbUVHFJa

On the future, please try to use it yourself the inspector browser according to our documentation here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

Thanks for your understanding!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.