I have got a bit of a problem, I'm using a mod from another site and for some reason its stretching the page on some pages, this is the page with all the turoails on:
http://www.codershangout.co.uk/coding-tutorials/
But as soon as i choose one of the tutorials and open it, for example ive chosen a random coding tutorial:
http://www.codershangout.co.uk/codin...cellindex.html
here is a screenshot of what I mean:
http://wimg.co.uk/6aS0tv.jpg
notice the size of the gap on the left compared to the right? ive been told to do this:
Quote:
You have this somewhere in one of your templates:
Code:
<div style="padding:0px 25px 0px 25px" align="left">
Change the last 25 to 10 to match with the other side.
|
But the only problem is, i cant find that part of code, ive tryed and tryed, but god knows where it is, can someone help me out please?
EDIT:
then someone else said that it could be this:
Code:
element.style {
padding-bottom:0;
padding-left:25px;
padding-right:25px;
padding-top:0;
}
but i cant find that either