Why is there space at the right of my website? (WordPress)

I have a wordpress site.
I don’t know how this happened, but now it obviously has got a lot of spae to the right!

Can some of you see through the souce and see if you find anything suspicious?
It would be really appreciated! Thanks 🙂

Read More

Site: gone! 🙂

Related posts

Leave a Reply

2 comments

  1. It’s because of your translation bar image in line 1031.

    <img style='border:0px;' src='http://www.matogvinnett.no/wp-content/plugins/
                                  global-translator/gltr_image_map.png'
                                  usemap='#gltr_flags_map'/>
    

    I’ts 960 Pixels wide and forces the body to stretch to the right.

    Best clip it, or give one of the surrounding containers overflow: hidden.

    The Web Developer Toolbar for Firefox is a great extension that helps find out such things using its “highlighter” function. I use it alongside Firebug to debug HTML.

  2. It is because of the code that you have put for the flags, when i removed this code using firebug:

    <img usemap="#gltr_flags_map" src="http://www.matogvinnett.no/wp-content/plugins/global-translator/gltr_image_map.png" style="border: 0px none;">
    

    There was no more space 🙂