pallen105
Member
Posted 10 months ago #
I have created a wordpress blog (http://www.ingletonsidings.com) but want to edit my title in my header. I would like to align the title (Ingleton Sidings ...it's the layout on an ironing board) to the right of my header to allow for easier reading. I'm using the graphene theme for my blog and there is a stylesheet with html code on it ( I think!) and I thought this might be what I need to change but I don't know.
Thanks
Paul
Go to Appearance > Editor. Then click on the themes stylesheet (style.css) - it may already be on the screen.
Add this to the bottom of the styles on there:
.header_title, .header_desc {
text-align: right;
}
That should send it to the right.
pallen105
Member
Posted 10 months ago #
Thanks I have now managed to get it to the right but is there anyway to get it to move it along to the right even more?
Remove width: 852px; from:
.header_title {
font: bold 28px "Trebuchet MS";
left: 0;
top: 160px;
width: 852px;
}
and
.header_desc {
border-bottom: medium none;
color: #000000;
font-size: 18px;
left: 0;
text-align: right;
top: 160px;
width: 852px;
}
pallen105
Member
Posted 10 months ago #
Thanks problem solved now! :)