New: Delete space between Featured Slide show & Featured Page on Front Page
-
Hello,
Thank you for your help.
I am trying to fix delete a space and line between the Featured Slide show & 1st Featured Page on Front Page.I had this problem before and your CSS patched it up perfectly. However, I accidentally goof up my site. Going back into CSS Revision fixed everything but this. I was not able to replicate the same success using the CSS patch this time. I thought maybe I was using the wrong # page/post and tried another number but that didn’t work either so…
I have copied and pasted the previous conversation to better orient you to the situation:
Delete space between Featured Slide show & Featured Page on Front Page
goodhope1blog
Member
May 22, 2017, 11:54 PMHello,
I am trying to delete both a large space and a small line that is between my Featured Slideshow and the content of the featured 1st pageSlide Show
______________________________________________*2 Inches of space (not wanted)
*______________ (line of the title of the untitled featured page- not wanted)text – Worship with us (wanted)
The blog I need help with is goodhopepca.com.
thesacredpath
Happiness Engineer
May 23, 2017, 1:40 AMHi there, add the following to your custom CSS, which hides the two elements that are creating that extra space above the Worship with Us content
#post-1437 .entry-thumb, #post-1437 .entry-header {
display: none;
}
If you wish to lessen the space above and below more, add the following also, and adjust the 40px values (originally it was 80px top and bottom).
.homepage-widgets .featured-page-one {
padding-top: 40px;
padding-bottom: 40px;
}
goodhope1blog
Member
May 23, 2017, 2:15 PMPerfecto!
Thanks Sacred Path.One last one.
Trying to make the Update Page’s “non-image” featured image (black space) shorter by far.The blog I need help with is: (visible only to logged in users)
-
Hi, the line and space is part of the page’s title area. Since you are not using a title on that, the following will hide that div.
.featured-page-one .entry-header { display: none; }On the updates page, the primary-header div height is continually recalculated by the theme software and that height is put directly into the html, so I’m not sure how much we can do with that in general. You can try this, which specifically targets your Updates (blog) page.
.blog #masthead { padding-bottom: 0 !important; } .blog #masthead .site-branding.pull-left img { max-height: 100px !important; width: auto; }
- The topic ‘New: Delete space between Featured Slide show & Featured Page on Front Page’ is closed to new replies.