Hello Britt,
I’ve seen that you’ve decided to remove the logo, in the end… In case you wish to explore the option above, here are the instructions.
Yes, you could do so by adding some padding at the top of the menu list with this code:
`.header-left-col .main-navigation ul:not(.sub-menu):not(.children) {
padding-top: 30px;
}
`
(where 30
is just an example number)
and to increase the size of the font you would add:
`.main-navigation ul:not(.sub-menu):not(.children) > li {
font-size: 1rem;
}
`
Where 1
is an example number. The current setting is 0.8125rem
rem is a relative unit meaning take whatever is the default size for the whole document and multiply it by this number. So the menu font size is currently 0.8125 times smaller than the default font size.
After this, you’d need to check that the menu still looks good in smaller screens. And, if necessary, add extra changes to make sure it does. All websites must now be able to adapt to mobile, tablet and wide screens, and the size and position of all elements normally vary depending on the size of the screen…
If you wish to learn how to make small styling changes to your website, here’s a Google mini-workshop that explains it quite well: https://developers.google.com/web/tools/chrome-devtools/css/