Home Forums WordPress Themes – Premium Circumference Change position of Logo and Title Reply To: Change position of Logo and Title

#20477
Sushil Adhikari
Moderator

Now the fun begins…you will definitely have some CSS work do do here, but to give you a starting point, the logo that sits to the left of the text based title and tagline is done from the style.css file around line 580 and looks like this:

#cir-logo-group,
#cir-site-title-group {
	display: block;
	overflow: hidden;
	text-align: left;
}

#cir-logo {
	float:left;
	margin: 0 0.5em 0 0;
}

The logo box with the id #cir-logo itself floats to the left, but you will want to float that to the right instead. You may need to also adjust the title group too because that still floats to the left as well.