PDA

View Full Version : [design/style issue] Large useless blank part to remove


Lumina
05-31-2010, 12:58 PM
I use vb4.0.3 and Project Tools 2.1.0 and Internet Explorer 8 under Windows Vista.

I have an issue on the following page:
http://forum.vbulletin-fr.org/project.php?projectid=1

Below “Liste des bugs recens?s pour vBulletin par les membres francophones.” and above “Voir la liste compl?te des rapports”, there is a large blank (about 2 cm high).

(picture) (http://img337.imageshack.us/img337/1323/largeblank.jpg)

I would like to know how to remove this blank?

ps: Pitchoune, if you read this, don't just fix it directly on the website, I want to know the how-to. ;)

we_are_borg
05-31-2010, 02:26 PM
Think that bug is fixed in 2.1.1 because on the dev site it's normal.

The thing your looking for is called blockrow_table

PitchouneN64ngc
05-31-2010, 08:42 PM
I'll check that :)

--------------- Added Monday 31 May 2010 at 23:44 ---------------

It has a min-height value of 90px, we need to check if this is needed for every browser or not.

--------------- Added Monday 31 May 2010 at 23:49 ---------------

This was added into changeset 16 - testing it in each browser (seems to be for IE7 only IIRC).

--------------- Added Monday 31 May 2010 at 23:59 ---------------

min-height useless in projecttools.css - updating the product (looks correct in IE7/8, Firefox 3.6.4, Safari 4.0.5, Opera 10.60 Alpha 1 & Chrome 6.0.408.1 dev) :)

Lumina
06-01-2010, 07:28 AM
Thanks. Here is a manual fix:

Find:
.pt_project .blockrow {
padding-top: 5px;
padding-bottom: 5px;
border-top: solid 1px {vb:stylevar light_border.borderColor};
height: 90px; /* Thanks IE for your CSS non-support... */
}

And change the line with “Thanks IE for your CSS non-support...” to something else.

PitchouneN64ngc
06-01-2010, 11:59 AM
All CSS definitions for IE have its own template and the height value was put into this template (not anymore in projecttools.css).