We are almost done with our first design with enfold… except try as we may we cannot get the table element to display top alignment:
http://cdfone.com/?page_id=4454
Note in cell 1 all is good, but in cell 2, the text is not top justified?
I find that if I remove the line in the base.css file for alignment: baseline, it’s what I want, except the nav and other aspects go wonky. This is the only table in the whole website. How can we make the change without disrupting other elements like the Nav?
Hey freelancemom!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
tr { vertical-align: top; }
Best regards,
Yigit
Thanks Yigit, but it does not work?
Hey!
Please try adding !important rule as following
tr { vertical-align: top !important; }
Best regards,
Yigit
It’s still not working. Very strange, such a simple element. Thanks for your help!
Hey!
Please use the code as following
tr td {
vertical-align: top !important;
}
Cheers!
Yigit
Yes! That did the trick. Thanks for your help!