Reply To: Display Site Tagline In Enlightenment

#20366
Daniel Tara
Keymaster

You can make the description display only in the large navbar by prefixing it with .navbar-large, here’s an example:

.navbar .site-description {
	display: none;
}

.navbar-large .site-description {
	display: inline;
	/* Rest of styles */
}
  • This reply was modified 9 years, 11 months ago by Daniel Tara.