First off, I would like to thank you for dedicating your time to creating this theme, I been enjoying it so far in exploring more in depth and of course provide my feedback on what features I would like to add.
I do have a question though, I am still modifying a website up, but I wanted to see if it was possible to inline the nav bar that I believe is part of a widget in the footer container? (bottom nav, you can’t miss it)
Also the table data and row, I am noticing a color difference, when I inspect the element, one is classified as tr and td, how do I make it that all my data is just one color and not changing every row it goes down?
http://www.techlionsupport.com
Thanks
oh sorry, it’s been a long day, it’s http://www.liontechsupport.com
Hey!
Thank you for the link. :)
You can add this on Quick CSS or custom.css to fix the widget alignment:
.flex_column .widget .widgettitle, .content .widget .widgettitle {
margin-top: 0;
}
Add this one to remove the alternate color of the tables.
.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra, .main_color tr:nth-child(even), .main_color .avia-data-table .avia-heading-row .avia-desc-col, .main_color .avia-data-table .avia-highlight-col, .main_color .pricing-table>li:nth-child(even), body .main_color .pricing-table.avia-desc-col li {
background: #fcfcfc;
}
Change the background color value.
Best regards,
Ismael