Hi,
How do you reduce the padding surrounding an image in a table – ideally I would want absolutely no padding at, so the logo fills the box.
Also is it possible to increase the opacity on the drop down menus?
Hey!
Try the following in your Quick CSS:
.pricing-table>li {
padding: 0px 0px !important;
background: transparent !important;
}
.html_header_top .header_color .main_menu ul:first-child >li > ul, .html_header_top #top .header_color .avia_mega_div > .sub-menu {
opacity: 0.9 !important;
}
Cheers!
Rikard
That’s worked, thanks! The only thing is on the table the bottom border has been removed?
Another thing – is there an optimal size for feature images on the blog?
Hey!
Try to add this to Quick CSS:
.pricing-table>li {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-top-style: solid;
border-top-width: 1px;
border-left-style: solid;
border-left-width: 1px;
border-right-style: solid;
border-right-width: 1px;
border-bottom-style: solid;
border-bottom-width: 1px;
}
Concerning the featured image, it depends on what layout you are using. But for SEO purposes, try to keep them as small as possible.
Cheers!
Rikard