Moving blog title to the right

thedon23

Elite Member
Joined
Dec 21, 2009
Messages
1,759
Reaction score
1,271
I'm using the Genesis Education Child theme..trying to move my blog title (text) to the right, as it's currently hovering over my logo. Anybody think they can give me a hand? This is the code from the css file

Code:
#title-area {
	width: 480px;
	float: left;
	margin: 0; 
	padding: 20px 0 0 0;
	overflow: hidden;
	}
	
#title-area #title {
	font-family: Georgia, Times New Roman, Trebuchet MS;
	font-size: 30px;
	font-weight: normal;
	line-height: 36px;
	margin: 0 0 5px 0; 
	padding: 0;
	}
	
#title-area #title a {
	color: #FFFFFF;
	margin: 0; 
	padding: 0;
	text-decoration: none;
	}
	
#title-area #title a:hover {
	color: #FFFFFF;
	text-decoration: none;
	}
	
#title-area #description {
	color: #FFFFFF;
	font-family: Georgia, Times New Roman, Trebuchet MS;
	font-size: 16px;
	font-style: italic;
	font-weight: normal;
	margin: 0; 
	padding: 0;
	}
 
try adding this line of code below "#title-area #title {"
Code:
float: right;

Not sure if it will help but worth a try I guess.
 
try adding this line of code below "#title-area #title {"
Code:
float: right;

Not sure if it will help but worth a try I guess.

Tried it, no luck. thanks anyways though :)
 
If you can post the link here or send me a PM with your website link, I can help you in a better way. Will have to see the exact codes to suggest you the needed changes.

If nothing works, try using position: absolute and add position: relative and overflow:hidden to it's parent element.
 
Yeah need to see the actual page markup...we don't even know what kind of element #title is.
 
Back
Top