-
AuthorPosts
-
July 24, 2014 at 1:27 am #72877
Hello,
I am using the Icon stack with WordPress 3.9.1 and am having some trouble removing unwanted empty space where a page title would usually be placed. Because this is my home page, I don’t want to include a title. How do I move ‘Latest News’ and the content below it so that the heading is in line with the ‘Facebook’ heading on the right? I’ll send the website link and login details in a private reply.
Thanks!
July 24, 2014 at 1:32 am #72879This reply has been marked as private.July 24, 2014 at 3:40 pm #73181Hi Emily,
Thanks for writing in,
The Left Content Title is moving down because of its default top margin
you can adjust that by simply adding this code below in Cusotmizer -> Custom -> CSS
.home h2 { margin-top: 10px; }
adjust 10 to suite your needs.
Cheers
July 24, 2014 at 6:26 pm #73244Thanks so much!
July 24, 2014 at 9:00 pm #73294Sorry, I have a couple more questions:
How do I remove the faint line between the page content and footer? I’ve managed to remove all of the other lines around the topbar, navbar, etc. but can’t manage to fix the bottom. I’ve tried using various codes (below), but they haven’t worked.
.x-colophon, .x-colophon+.x-colophon {
border: 0px !important;
}.x-colophon, .x-colophon+.x-colophon {
-webkit-box-shadow: none !important;
box-shadow: none !important;
}Secondly, I’ve changed the top padding of the footer for my pages using this code. How do I implement the same thing on my posts page (‘News’)?
.x-colophon.bottom {
padding-top: 15px !important;
}Thanks again for your help!
July 25, 2014 at 7:47 pm #73648Hi Emily,
Try this css for the border above the footer.
.hentry:first-child:last-child .entry-wrap { border:0px !important; }
Then this css for news page
.blog .x-main.full>.x-container-fluid.offset-bottom{ margin-bottom : 0px !important; }
Cheers!
July 25, 2014 at 7:56 pm #73652Hi Emily,
1) Use the following CSS:
.hentry:last-child .entry-wrap.entry-wrap { border: none !important; }
2) I didn’t get you, can you please show me a screenshot to compare between pages? They look same to. 🙁
Thanks!
July 25, 2014 at 8:03 pm #73654Thanks! That first code worked for all the pages, except the ‘News’ one. What do I add for it to work?
July 25, 2014 at 10:40 pm #73699Never mind, it ended up working! Thanks so much for all your help.
July 26, 2014 at 2:59 pm #73787You’re Welcome
-
AuthorPosts