Emil
Emil

Reputation: 7256

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 :)

Site: gone! :)

Upvotes: 1

Views: 190

Answers (2)

Pekka
Pekka

Reputation: 449435

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.

Upvotes: 2

Sarfraz
Sarfraz

Reputation: 382696

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 :)

Upvotes: 1

Related Questions