Hello. I have used this forum, docs and Firebug but still cannot figure this out. How do I change the color of fonts in the content area? I have changed the font size but cannot get the color. Thank you.
Content Area Font color in PlatformPro
Started by
stephendailey
, Dec 02 2010 02:32 AM
9 replies to this topic
#1
Posted 02 December 2010 - 02:32 AM
#2
Posted 02 December 2010 - 02:42 AM
There are a few variables so let's get a link to one of your pages and maybe post the CSS you're using for color change.
Thanks, Bryan
#3
Posted 02 December 2010 - 02:57 AM
Wow! Thanks for that rapid response. I have not tried any CSS (as you can guess, code is not my first language). I have changed the page title's font color using the function within PlatformPro. Here's the url
#4
Posted 02 December 2010 - 02:58 AM
clarification - I have not tried any CSS to change font color
#5
Posted 02 December 2010 - 03:01 AM
Let's try this:
`
#maincontent .fpost .entry_content {
color: #555;
font-size: 1.1em;
line-height: 1.6em;
}
`
Add that to Custom Code > Custom CSS and of course change 555 to the color you want.
Thanks, Bryan
`
#maincontent .fpost .entry_content {
color: #555;
font-size: 1.1em;
line-height: 1.6em;
}
`
Add that to Custom Code > Custom CSS and of course change 555 to the color you want.
Thanks, Bryan
#6
Posted 02 December 2010 - 03:14 AM
Beautiful, thank you very much! But this leads to another question. I entered a test comment and see that the font is black. I'd like it to match the content area color.
#7
Posted 02 December 2010 - 03:23 AM
`
#pl_comments .commentlist p {
color: #330000;
margin: 0 0 1em 5px;
}
`
Thanks, Bryan
#8
Posted 02 December 2010 - 03:33 AM
I'm afraid there is no change.
#maincontent .fpost .entry_content {
color: #330000;
font-size: 1.1em;
#pl_comments .commentlist p {
color: #330000;
margin: 0 0 1em 5px;
}
line-height: 1.6em;
}
#9
Posted 02 December 2010 - 03:43 AM
Code should look like:
`
#maincontent .fpost .entry_content {
color: #330000;
font-size: 1.1em;
line-height: 1.6em;
}
#pl_comments .commentlist p {
color: #330000;
margin: 0 0 1em 5px;
}
`
Thanks, Bryan
#10
Posted 02 December 2010 - 03:49 AM
Yep. That did it. Thank you very much.










