Jump to content

Archived

This topic is now archived and is closed to further replies.

tandan

how to remove white from below footer

Recommended Posts

tandan

I am having a problem with a large white area below my footer on large screens. Please see attached screenshot.

Site is: http://tandancreative.com/

When I stretch the screen smaller, it doesn't show. However, when stretched out further, it does. 

Now that a lot of people use wide screen monitors, I can't have that happening. 

I am not sure how to change the settings as it's set to repeat properly. 

Can someone please advise? 

Thank you!

Tan

Share this post


Link to post
Share on other sites
tsalstrand

you're going to have to either fill the space (because the content is too little as it is) or in the css set the background to stretch (make sure to put in all the vendor prefixes).

 

Also, you may want to get rid of the watermark at the bottom... I can't remember the setting in the control panel, but in the custom css you could just add the follow:

.the-watermark {
display: none !important;
}

Share this post


Link to post
Share on other sites
tandan

Hi tsalstrand, Thanks for your reply. I just don't have any extra content I want to put in and don't feel that I should have to. I don't want to stretch my background either so that's not going to work. It's a tile and if I stretch, it won't look good and be all fuzzy. 

Anyone else have any advice? 

Share this post


Link to post
Share on other sites
Aires

Hi,

you could add a full width section under the slider and in the section options choose 436px as the minimal size. That should make the background stretch to the bottom but then you are going to have to choose a background for the section, so you could choose the same background as the rest of the site.


ndTgvai.jpg

Visit iheartpagelines.com for the latest tutorials on PageLines related products.

 

Share this post


Link to post
Share on other sites
James B
Hi TanDan
 
The solution Aires posted above will prob work best. However you could also look into modifying the slider css and its currently set to have a max-height of 480px px on your site. Take max-height out completely and you should see most of that white space vanish.
 
Add a min-height to that and you can make it touch the bottom of the screen - http://screencast.com/t/tCOVnaz5wao
 
.revslider-container {
    max-height: none;
    min-height:650px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100% !important;
}
 
Also Footer extras is in the layout and adding a margin at the bottom of the page still of around 10px.

Kindly search the forum and read the documentation before posting. It will help you resolve many issues.

For CSS help be sure to check out W3Schools first and be sure to download FireBug for FireFox for troubleshooting.

James B

Share this post


Link to post
Share on other sites
tandan

Hi James (and Aires)--that totally worked! Thanks so much!!!

Share this post


Link to post
Share on other sites
greenfly

Thank you for letting us know this worked for you 


The answer to many issues can be found by searching in the forum before posting as someone else  may very well have had the same problem before you have.  Also, reading the documentation can help you gain a good understanding of how everything works. 

 

Please do not send me private messages. Occam's razor - The principle states "Keep things simple!"

Share this post


Link to post
Share on other sites

×