Thank you for being so helpful in my other thread! I have a couple more questions!
First, is there a way for me to increase the height of the topbar as well as the font size in the topbar? Our audience is older and we want to make sure they can see and read the content up there.
Secondly, is there a way to remove or hide the titles of the featured page widgets (shown in screenshot) on my home page?
That's possible with some custom CSS. For the topbar height you can use the following rule
.header .header-topbar { padding: 10px 0; }
For the font-size you can use:
.header-topbar-sidebar .menu li a, .header .header-topbar .header-description { font-size: 14px; }
To remove the titles from the featured page widget is also possible with custom CSS. But it will remove the titles from all feautured page widgets on the entire site. If you don't want that let me know and I will describe another fix for it. But for now this is the CSS:
Hi Barry!
Thank you for being so helpful in my other thread! I have a couple more questions!
First, is there a way for me to increase the height of the topbar as well as the font size in the topbar? Our audience is older and we want to make sure they can see and read the content up there.
Secondly, is there a way to remove or hide the titles of the featured page widgets (shown in screenshot) on my home page?
Thanks so much again!
Becca
Hi Becca
No problem, you're welcome :)
That's possible with some custom CSS. For the topbar height you can use the following rule
.header .header-topbar { padding: 10px 0; }
For the font-size you can use:
.header-topbar-sidebar .menu li a, .header .header-topbar .header-description { font-size: 14px; }
To remove the titles from the featured page widget is also possible with custom CSS. But it will remove the titles from all feautured page widgets on the entire site. If you don't want that let me know and I will describe another fix for it. But for now this is the CSS:
.featured-page .featured-page--content .featued-page--title { display: none; }
Let me know if you have any questions
Best regards,
Barry
QreativeThemes.com | WordPress Themes
Works great! Thanks Barry!