Forum Replies Created
-
AuthorPosts
-
March 8, 2017 at 1:53 pm in reply to: Is there a plugin to show the last blog post inside a widget? #202721dr_erniMember
Thanks for the advice - I'm still on the lookout for a plugin that will display a set amount of posts natively.
March 8, 2017 at 10:52 am in reply to: Is there a plugin to show the last blog post inside a widget? #202711dr_erniMemberThat widget centers the post content, and I found I had to edit lot of styling to make it look properly.
August 26, 2016 at 3:16 pm in reply to: How to add a featured image to landing page template. #192106dr_erniMemberI'm an idiot... disregard please.
dr_erniMemberHi Lynne,
Figured it out using CSS and a couple of lines of JQuery 🙂
dr_erniMemberUPDATE 2: Looks like I found a workaround and the cause.
Cause: Looks like Yoast strips the H1 tag from individual pages / posts, from site-title
Workaround: setting margins to 0 on site-title and adding a 10px bottom padding - now looks consistent.
.site-title {
font-family: 'Roboto Slab', serif;
font-size: 30px;
font-size: 3rem;
line-height: 1;
margin-bottom: 0px;
margin-bottom: 0rem;
padding-bottom: 10px;
padding-bottom: 1rem;
}dr_erniMemberUPDATE: I have WordPress SEO activated - and this only seem to happen with that plugin on. Running just on the Genesis SEO, the H1 issue seems to be fixed. Interesting...
dr_erniMemberHere's what I found:
.site-description {
font-size: 36px;
font-size: 3.6rem;
font-weight: 300;
line-height: 1.2;
margin: 0;
}Do a search and change the font-size values there. Change both values at the same time (eg. 20px on the top line, 2rem on the second).
e.
October 18, 2013 at 4:32 pm in reply to: Wintersong – how to add site description under title? #67458dr_erniMemberAll figured out.
After making the site-description visible, I split the divider css into two:
.site-header .site-description::after {
border-bottom: 1px solid #000;
content: "";
display: block;
margin: 30px auto 30px;
margin: 3rem auto 3rem;
width: 25%;
}.site-header .widget::after {
border-bottom: 1px solid #000;
content: "";
display: block;
margin: 0 auto 30px;
margin: 0 auto 3rem;
width: 25%;
}October 18, 2013 at 10:05 am in reply to: Wintersong – how to add site description under title? #67345dr_erniMemberAwesome - thanks Robin!
Now I'm having a bit of a hard time formatting the divider line (moving it down some more). I couldn't find it in the code inspector. Any idea where to look?
Cheers and thank you!
ernest.
dr_erniMemberExcellent thank you!
One more question - I'd like to add the site description under the title (similar to what Brian Gardner has right now on his site) - and I can't seem to find a tutorial that addresses that.
dr_erniMemberThanks for the notes - I made a few changes based on your suggestions 🙂
dr_erniMembereeeeeeexcellent. Thank you!
dr_erniMemberUpdate:Â Going through the code, I noticed there's an additional line of CSS code:
media="all"
.page .wrap, .post .wrap {
background: white url(images/post-swirl.png) no-repeat right bottom;}
How do I go about removing that from the off-home pages?
-
AuthorPosts