Hi there,
at the moment both the ‘grid entry title’ and the ‘blog entry post title’ inherit the h3 tag. However, I want the portfolio grid entry title font to be bigger than the size used for my blog posts highlights. These can be seen on the home page of my site…. http://www.andpeck.co.uk
How do I change this?
Regards
Andy
Hi Andy,
Try adding this code to the Quick CSS:
.grid-entry-title{ font-size: 3em; }
Change “3em” for the desired size (ex: 4em, 5em, 6em).
Regards,
Josue
Hi there,
Im afraid I already had that in my CSS but its ignoring it despite me including !important
I wonder if I were to use a CUSTOM CSS CLASS with the name custom name being ‘portfolio_grid’. Could this work and if so what CSS should I use. Or is there something else wrong?
Cheers
Andy
Hi Andy,
You are using !important the wrong way, do it like this:
font-size: 2.5em !important;
Regards,
Josue