Project:AdaptiveTheme
Version:7.x-3.0-rc6
Component:CSS/HTML
Category:support request
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

Hi all,
I'm working on an theme that uses a grid.
For some odd reason, the first cell in the table is always a few pixels lower than the rest.
You can see it here:
http://dev.dedraak.org
Below the slider there are 3 book covers.
The first one, title and image are a few px lower then the 2 others.
I'm staring myself blind.
Anyone care to give me a hand on this?
Thanks in advance!
Johan.

AttachmentSize
Schermafbeelding 2012-11-09 om 16.21.12.png228.72 KB

Comments

#1

This is the problem. In your themes css file "global.table.css" on line 119

tr.row-1 td.col-1 .views-field-field-cover a {
background:url(../images/label-new.png) top left no-repeat;
display:block;
height:160px;
width:263px;
z-index:9999px;
}

Remove the height and width so it looks like this...

tr.row-1 td.col-1 .views-field-field-cover a {
background:url(../images/label-new.png) top left no-repeat;
display:block;
z-index:9999px;
}

Should look better.