I have never had this problem before, but the site I am working on http://www.barcelonapublishers.com is posing a challenge. I want to change the paragraph text to 14px. I changed it in the style.css file and it made no difference. I can change line height there and it changes the height, but nothing I do changes the font size. I have tried changing it in the body css and at .hentry .entry .
Also, I need some line/paragraph breaks. On this page, http://www.barcelonapublishers.com/e-books/ there are actually several paragraph breaks between each item, but it does not show up when you publish the page. How can I change these things? Thank you!
I got some of the line breaks fixed by removing the margin:0 and padding:0 attributes from p in the stylesheet. It is still ignoring multiple paragraphs though. AND I haven't figured out how to change the regular text font size.
element.style {
font-size: medium;
}
Some themes also have a setting that allows you to change font size. Before you go messing around with the CSS again, check the settings.
Thanks 123milliseconds! Strangely, this theme does not have those settings.
Any idea why <p />tags are ignored completely?
Hi,
For change font size in Constructor theme you should be write small CSS rule on CSS tab (on customize page):
.hentry .entry p {
font-size:14px !important;
}