Hello,
How can I change the text size and color of Jumbotron entry text? This is the text below the one with the yellow dots of your demo.
Thanks,
Fernando
Hello,
How can I change the text size and color of Jumbotron entry text? This is the text below the one with the yellow dots of your demo.
Thanks,
Fernando
Hello Fernando,
This is the CSS code that handles the entry text of the jumbotron:
#header .bottom-header p {
font-size: 22px;
color: black;
}
Ideally, the above CSS code should be placed in a child’s theme style.css
But you can use a plugin like Simple Custom CSS or place it directly in Dashboard > Appearances > Editor > Style.css but keep in mind that this will get erased if you replace/update the theme files.
Hello Ion Rutz,
I found your post helpful but I would like additional insight please. Thanks in advance.
How do I place style.css in a ‘child’s theme?’ What steps to save it at that location?
Hello,
You should first have a detailed look here on how to create the child theme:
and here: Child Themes « WordPress Codex
If you only want to use some CSS styling but no core files modifications I would recommend you to just install a plugin to take care of the code and skip the trouble of setting up a child theme.
Cheers