Explorz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Image Drop ShadowsWell that’s a load of help.
Forum: Fixing WordPress
In reply to: Twenty Eleven – How to Center Navigiation Menu?Hi,
I’ve followed all the code, but my menu bar is now a little taller and the hover block doesn’t line up. It doesn’t reach to the bottom of the menu.
How do I either increase the hover block or return the menu to be a little thinner?
thanks.
Forum: Themes and Templates
In reply to: Twenty Eleven Menu Hover AlignmentHere are the changes I made:
delete from
#access { float:left; }add to
#access { text-align:center; }add to
#access ul { display:inline-block; }edit margin in
#access div {
margin: 0 0 0 0;
}Forum: Themes and Templates
In reply to: Twenty eleven post divider linesThat did it. Thank you.
Forum: Themes and Templates
In reply to: Twenty eleven post divider linesYes, yes. I have a child theme.
I mean between posts. On the home page there are numbers post summaries. I would like to increase the thickness of the dividing line on that page.
https://truenorthalliance.com/blog/
Thanks
Forum: Themes and Templates
In reply to: twenty eleven post footer meta spacingAlso, isn’t there supposed to be a line separator of some sort at the bottom of each post before the meta data?
I had this when I was using the twenty eleven theme at wordpress.com.
Forum: Themes and Templates
In reply to: Twenty Eleven Showcase recent post fontWhere do I grab the original style.css?
Thanks
Forum: Themes and Templates
In reply to: Twenty Eleven Showcase recent post fontI just created a child theme. Do I need to go back and replace the parent theme with the original code? Or will that just sort itself out if/when the theme gets updated?
Forum: Themes and Templates
In reply to: Twenty Eleven Showcase recent post fontI figured out all aspects except the color code for the entry-title color.
Here’s the code that worked for the font sizing:
.showcase .entry-title a {
font-size: 14px;
}.showcase h1.entry-title a {
font-size: 24px;
}.showcase h2.entry-title a {
font-size: 24px;
}However, since the listed recent post titles are links I am having a hard time figuring out the right code to change their color on that page.
I tried this:
.showcase .entry-title .edit-link a {
color: #800000;
}But clearly that doesn’t work. Thoughts?
Forum: Themes and Templates
In reply to: Twenty Eleven Showcase recent post fontDang, unfortunately that changes the title some of the recent post posted on that page too. Ideally I am just trying to change the Listing of other recent posts. Odd that they share the same code.
The listed titles still seem oddly large even though I sent the size to 16px. What else might be affecting those?
Also, when I add a color directive to the code, it affects the single post title but not the list. But a font-weight directive does affect the list.
.showcase .entry-title a {
font-size: 16px;
color: #01538d;
}Forum: Themes and Templates
In reply to: Twenty Eleven Showcase recent post fontUnfortunately that didn’t have any effect.
So, I stripped out the h1 factor and it worked!
Thank you for pointing me in the right direction.