Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Can you link to a page in question?
Hi Andrew
Below is the link, please be aware this site is in production so it is not the complete project. Hence it may look a bit weird and random in places.
http://www.thenetmob.com/chocolate-cake-food-hack-2/
Thanks
Joe
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Hmm that’s strange, your post content seems to be in <div> elements rather than <p>. If you switch to <p>, does that solve your problem?
Hi Andrew,
Steps taken:
1.Gone to post in wordpress.
2.changed the first section from:
<div> If you are a Type 2 Diabetic it is vital to eat a healthy, balanced diet. However you don’t need to avoid certain groups of food completely. If you make healthy choices and eat regularly, you can enjoy a varied diet and eat a wide range of foods.</div>
to
<p> If you are a Type 2 Diabetic it is vital to eat a healthy, balanced diet. However you don’t need to avoid certain groups of food completely. If you make healthy choices and eat regularly, you can enjoy a varied diet and eat a wide range of foods.</p>
3.Updated page
4.refreshed the page,
still appears in grey.
thanks
Joe
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then install this Custom CSS Manager plugin http://ww.wp.xz.cn/plugins/custom-css-manager-plugin
Then use its “CSS Code” section of the dashboard to hold your CSS modifications:
Alternatively use your Child Theme style.css file to hold your CSS modifications:
.single .entry-content{
color: #000;
}
Andrew, many thanks for your suggestion. it has worked a treat to confirm this is how i did it.
Appearance>Theme Options>Tools
in custom css added
.single .entry-content{
color: #000;
}
Thanks again, Joe
Hey, it worked for me too. But i would like to change some other colors too. I mean, for the colour post content there’s that code.
What if i want to change the colour of the post tittle? Which code i have to use?
Okey i found it on style.css theme. I tested putting this
.style .entry-content{
font-size: 20px;
}
But no chaged. What’s wrong with the code?