sacredpath
(@sacredpath)
Automattic Happiness Engineer
Hi there, go to the Dara Theme Showcase page and scroll down near the bottom to the Quick Specs section for image sizes.
D’oh! Many thanks.
I have another query if anyone can help – is it possible to change the capitalisation of the menu items?
sacredpath
(@sacredpath)
Automattic Happiness Engineer
Hi, this will set the menu items back to “normal”.
.main-navigation a {
text-transform: none;
}
Brilliant thanks – do have a code which also transforms the capitalisation of the dropdown items? I’ve been playing about with .dropdown-content in the additional CSS but it doesn’t seem to be making a difference.
sacredpath
(@sacredpath)
Automattic Happiness Engineer
Oh interesting, they did the text transform in two places. Change what I had given you to this and it will take care of both cases.
.main-navigation a, .main-navigation ul ul a {
text-transform: none;
}