• 0

Question

Hello. I am having a problem with the footer on my website. It is the orange bar with the copyright info in it. My website is a wordpress site and I don't know how to get the orange footer to go all the way to the bottom of the webpage. There is a blue space (that is part of the blue "fat footer") below the orange footer that I don't want there. Can someone please help me get the orange part of the footer all the way to the bottom of the webpage? My website is Truck Driving Schools Info.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

This tag in your source is causing the gap:

<img id="wpstats" src="https://stats.wordpress.com/g.gif?host=www.truckdrivingschoolsinfo.com&rand=0.6370447720400989&v=ext&j=1%3A3.0.1&blog=59774831&post=68&tz=0&ref=http%3A//www.neowin.net/forum/topic/1215515-footer-problems/" alt="" scale="0">

You can either move it or set the display style for #wpstats to 'none'

Link to comment
Share on other sites

  • 0

Sorry, I am kind of a noob when it comes to this stuff. Where in my Wordpress do I go to remove it? Is it in my CSS?

Link to comment
Share on other sites

  • 0

I've never used WordPress, so I don't know how pages are generated. Adding:

 

#wpstats {
  display: none;
}

 

to your CSS should get rid of it.

Link to comment
Share on other sites

This topic is now closed to further replies.