dcardona
Forum Replies Created
-
blackcat808, do you mind sharing how you accomplished different sidebar layouts for your homepage and all other pages? This is something I am trying to do.
Forum: Themes and Templates
In reply to: [BlogoLife] Changing Font Color in Blogolife ThemeNo. I have still been unable to make the changes I want.
Forum: Themes and Templates
In reply to: [BlogoLife] Changing Font Color in Blogolife ThemeThank you for your help, but I am not changing the files in the theme. I am using a child theme. I found the selectors by inspecting the elements, but when I edit the child theme stylesheet to override the parent, no changes are implemented.
Forum: Themes and Templates
In reply to: [BlogoLife] Changing Font Color in Blogolife ThemeYes, on line 368 in the stylesheet. That’s another one I tried. But again, no change.
Forum: Themes and Templates
In reply to: [BlogoLife] Changing Font Color in Blogolife ThemeI tried in turn
adding
color: #c8c8c8;
tobody { font-family: 'Oswald', sans-serif; }
changing
p { color: #666; line-height: 20px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; }
to
p {
color: #c8c8c8;
line-height: 20px;
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
}
and changing.entry-content { margin: 20px; color: #666; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height:30px; }
to
.entry-content { margin: 20px; color: #c8c8c8; font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height:30px; }
Forum: Themes and Templates
In reply to: [Duena] Change ColorsP.S. I used a background plug in to change the full-sized background.
Forum: Themes and Templates
In reply to: [Duena] Change ColorsFirst, before making any changes, be sure to create and activate a child theme. The WordPress Codex has a great tutorial: https://codex.www.ads-software.com/Child_Themes.
The stye.css can be accessed through the Appearance Editor. I had to go through my host to locate the bootstrap directory and file.
I didn’t keep note of the pink hexadecimal values, you’ll just have to look for them. Also, in the bootstrap.css there were a few lines of code with RGB values, so don’t forget to edit that as well.
Forum: Themes and Templates
In reply to: [Duena] Change ColorsI solved my problem. I skipped over a few items in bootstrap and they were using three very similar shades of pink; I was only searching for and replacing one of them. Doesn’t really explain why things disappeared, but I’ve got it sorted now. Thanks for your time, iopsychguy.