And with this mine, I entered the top ten posters, by the way...

Since this message is on the page nr. 6 of your thread, be careful not to miss my answer in the previous...
Moderators: Flumminator, Zomis
Maybe I've expressed myself in a wrong way. You need both options. The float one is intended to leave the text beside the image, the padding is needed to add a free space around the image. Looking at the page seems that you left only the float rule, so your words above are a bit strange. Maybe you meant that you have removed padding and replaced it with float. Anyway, put them both.Martijn wrote:And yes, I had already removed the float setting and reset it to padding.
Code: Select all
.game th {
width: 20%;
}
I don't really know. I've found also that a local copy of your pages (RnD and FreeWareWindows) behave differently that those on your server !!!Indeed, the screenshots still look very strange in IE! what is the problem?
Really? I can't find the padding in your CSS...I added the padding as well as the float option and it works now. I don't know what I had in mind, I can't really remember that. but now it works anyway.
There is only a solution: with the editor, select the two heading cells and set them to be aligned to left.- the game name/author etc. information in the game tables has to be to the left side and not have a margin (or whatever it has). now it's centered and not aligned to the left.
For this set:Martijn wrote:- the game tables have to be as compact as possible, that means, if possible, a smaller padding from above and eventually a slightly smaller lettertype size inside the tables (at least, if that looks fine)
Code: Select all
/*-----------------------------
Tables
-----------------------------*/
[...other rules]
.game table {
padding-top: 3px;
font-size: 80%;
}
Code: Select all
img {
[...other rules...]
float: left;
padding: 10px;
}
Code: Select all
<th style="width: 22%; text-align: center;">Number of Levels </th>
<th style="width: 22%; text-align: center;">Author </th>
Code: Select all
<th style="width: 22%;">Number of Levels </th>
<th style="width: 22%;">Author </th>
Code: Select all
.game table {
width: 90%;
}
Code: Select all
.game th {
width: 30%; /* old value was 20%*/
}
Code: Select all
.game img {
padding: 15px;
}
Code: Select all
table img {
border: none;
height: auto;
width: 92%;
opacity: .90;
margin: 4%;
}
Code: Select all
table img {
border: none;
opacity: .90;
padding: 5px;
}
Code: Select all
<div class="centercontent">
<table class="screenshots">
[...]
</table>
</div>