Hi folks, I'm not sure if this is per Marinelli's css or per Views as a bug. The autopreview in view, shows a correct vertical align top whereas the real-deal shows a vertical align - center. I can't seem to find the vertical align css placement to correct this.... any help will be appreciated.

Thanks,
James

CommentFileSizeAuthor
autopreview.jpg104.54 KBjjoves
realdeal.jpg158.35 KBjjoves
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Deepika.chavan’s picture

Hi,
Try adding following CSS to your theme's "style.css" file , if it doesn't exist you can create one and add following line of code in your theme's "marinelli.info" file.

Code to be added in marinelli.info :

stylesheets[all][] = style.css

Code to be added in style.css :

table, th, td {
  vertical-align:top;
}

Please clear cached data.
NOTE: if you wanna add the above css for particular view then just add view id or class before 'table', 'th' and 'td'. (e.g. .view-id-quotes table, .view-id-quotes th, .view-id-quotes td {. Here the view has class='view-id-quotes').

HTH!!

Deepika Chavan.