views:

85

answers:

4

Hello all,

I have just setup a wordpress forum and I find that all images are just over sized, Why is this the case?

http://rasaasa.com/forum/

Also how can I fix this?

Thanks all

+8  A: 

Check your stylesheet!

style.css (line 159) includes a line where it makes the images 200 pixels.

#content .latest img {
float:left;
margin:0 10px 5px 0;
width:200px;
}
Michiel
+1 yeah, definitely appears to be stylesheet related
Jason
I could kiss you!!! :)
Abs
Snap! Your faster than me.
Joel Potter
MAKE OUT AFTER MAKE OUT AFTER
Jason
Looking back at this question. I don't think I still want to kiss! :)
Abs
+1  A: 

The rule

#content .latest img

in the file

wp-content/themes/slickpress_theme/slickpress_theme/style.css

has as width specification of 200px.

Remove that and you should be good.

Joel Potter
+1 for giving the same answer as I did
Michiel
A: 

You can use a tool like firebug to analyse your web page and work out why things are misplaced.

Simon P Stevens
Not an answer - more of a tip. I already mentioned this in the comments.
Jonathan Sampson
A: 

Or if you've got the latest version of safari, you can use the web inspector to analyse such things on your website.

Seedorf