Hello all,
I have just setup a wordpress forum and I find that all images are just over sized, Why is this the case?
Also how can I fix this?
Thanks all
Hello all,
I have just setup a wordpress forum and I find that all images are just over sized, Why is this the case?
Also how can I fix this?
Thanks all
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;
}
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.
You can use a tool like firebug to analyse your web page and work out why things are misplaced.
Or if you've got the latest version of safari, you can use the web inspector to analyse such things on your website.