Hi, how do I reduce the font size for the header of the partner logo? So far I tried this. It does become italic, but this doesn’t affect the font size.
thanks for help
/*partner logo*/
#top .avia-smallarrow-slider-heading {
font-style: italic !important;
font-size: 18px !important;
}
/* end partner logo*/
Hey Steve,
Try adding h3 to your rule like this:
/*partner logo*/
#top .avia-smallarrow-slider-heading h3 {
font-style: italic !important;
font-size: 18px !important;
}
/* end partner logo*/
Best regards,
Mike
I added this, and it worked. However, it took all the logos up by a few pixels.
I tried to correct it, setting the line height (line-height: 29px !important;). That also worked. Final result is this:
/*partner logo*/
#top .avia-smallarrow-slider-heading h3 {
font-style: italic !important;
font-size: 18px !important;
line-height: 29px !important;
}
/* end partner logo*/