Home Forums WordPress Themes – Premium Circumference How can I create a slide show with Circumference? Reply To: How can I create a slide show with Circumference?

#20231
Sushil Adhikari
Moderator

Sorry for late reply… anyway, you’re very welcome. To create a slideshow like the demo site, this setup tutorial will help you:

Slideshow

For menu font sizes, menu styling begins in the style.css around line 3306, but for the first level of menu, here is an example where the font size is done for it around line 3330:

.nav-menu li {
	display: inline-block;
	position: relative;
	font-size: 0.813em;
	margin-left: 0;
	padding: 0;
}

Your secondary menu is also handled through this batch of code. Please use a child theme for modifications, or if you just plan to change CSS, use jetpack’s Edit CSS or a plugin for editing and creating CSS (ie: Simple Custom CSS).

Basically throughout the menu coding in the CSS, look for anything with “font-sizes”.