Posted by jjoves on September 9, 2011 at 8:04pm
Jump to:
| Project: | Marinelli |
| Version: | 7.x-3.0-beta11 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
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
| Attachment | Size |
|---|---|
| realdeal.jpg | 158.35 KB |
| autopreview.jpg | 104.54 KB |
Comments
#1
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.