- This topic has 7 replies, 2 voices, and was last updated 11 years, 8 months ago by
Tom.
-
AuthorPosts
-
June 17, 2014 at 1:47 pm #1365
Istvan
Hi,
How can I remove header from my website?
Thx for your answer.
Regards,
Istvan
June 17, 2014 at 3:48 pm #1368Tom
Lead DeveloperLead DeveloperHi there,
You can use our Disable Elements add on to remove the header and other elements on specific pages.
You can also use custom CSS. Something like this should work:
.site-header {display:none}Hope this helps,
TomJune 18, 2014 at 1:15 pm #1394Istvan
Hi Tom,
Thank you for your answer! I’ve one more question.
I have a gap between the content section and footer widget area.
I saw your video, you put an image to there called: “I’m actually 1200 px wide!”So the question is, how can I remove it or how can I put a picture to there?
Regards,
Istvan
June 18, 2014 at 1:40 pm #1395Tom
Lead DeveloperLead DeveloperHi Istvan,
The gap is probably caused by the content layout being set to “Separate Containers”.
You can go to “Appearance > Customize > Layout > Content Layout” to set your layout to “One Container”, which will remove the gaps throughout the theme.
Hope this helps,
TomJune 18, 2014 at 2:01 pm #1396Istvan
Hi Tom,
I made the modification that you offered me, unfortunately didn’t solve my problem.
Any other suggestion? 🙂https://drive.google.com/file/d/0B41_eEL7rO5cQmQ0SlAtOFg4eGc/edit?usp=sharing
Regards,
Istvan
June 18, 2014 at 2:06 pm #1397Tom
Lead DeveloperLead DeveloperAre you just trying to reduce the whitespace between your content and footer widgets?
If so, you could use this CSS:
.one-container .site-content {padding-bottom:0;}You can use a plugin like this to add your custom CSS: http://wordpress.org/plugins/simple-css/
Let me know if this helps or not 🙂
TomJune 19, 2014 at 11:04 am #1428Istvan
Hi Tom,
Sorry, this issue was my fault.
I put this code to the style.css, to stay the footer in the bottom of the page:html, body {height: 100%;}
#wrap {min-height: 100%;}
#main {overflow:auto;
padding-bottom: 180px;} /* must be same height as the footer */#footer {position: relative;
margin-top: -180px; /* negative value of footer height */
height: 180px;
clear:both;}/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:””;
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J – negate effect of float*/
}This code put that gap to the page.
Have you any idea to stay the footer in the bottom of the page?
Thanks,
IstvanJune 19, 2014 at 3:00 pm #1443Tom
Lead DeveloperLead DeveloperThat code you have should work, just make sure 180px is the same height as the footer, and there shouldn’t be any excess space.
Tom
-
AuthorPosts
- You must be logged in to reply to this topic.