Hi All,

Is there a way to increase the font size of my sub menu items ‘For Lease’ and ‘For Sale’?
Will I need to enter a custom CSS code?
I have attached a screenshot for reference.
Many thanks
Hi All,

Is there a way to increase the font size of my sub menu items ‘For Lease’ and ‘For Sale’?
Will I need to enter a custom CSS code?
I have attached a screenshot for reference.
Many thanks
Hi Greer,
Yes, custom CSS is needed to adjust the font size set on the renew stack. Look at this: https://screencast-o-matic.com/watch/cYVoImv5lX
The CSS can be added on Theme Options > Global CSS
.desktop .sub-menu {
font-size: 20px;
}
The following guide might help you for other changes that needs custom CSS:
Thanks very much, this has worked.
The sub menus are entered as ‘For Sale’, is there a way to have these show as all capital letters when viewing the website?
I want to keep the google search results as ‘For Sale’ lower case letters, rather than in capitals though.
Is this at all possible? happy to provide screenshots to better explain myself if needed.
Many thanks
Hi Greer,
Yes, that is possible with text-transform CSS property. You can update the given code above to this:
.desktop .sub-menu {
font-size: 20px;
text-transform: uppercase;
}
More details about text-transform.
Hope it helps,
Cheers!
Brilliant - thank you!
You’re welcome. Glad we’re able to help.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.