Originally Posted by Your Virtual Wizard
|
I have a client whose wordpress themed blog needs some changes. She would like the title of the blog to be moved to the other side of the page and she would like to remove or find out the option to edit the Asides section of the blog.
|
To move the page title (and tagline under it) go to the styles.css file.
To move the page title:
Find the code I bolded (using the Edit > Find feature of your browser makes this easier to search for it):
#title h1 {
<...removed my other code.......>
float:left;
}
Change float:left; to float:right;
To move the tagline under it:
Find this line of code:
#tagline h2 {
<...removed my other code.......>
float:left;
}
Change float:left; to float:right;
ETA: Click on Update File to save your changes. Then, view the page (you might need to refresh to see your changes). The title and tagline should be on the right.
As far as the Asides area, without actually seeing her admin area, I'm not sure on that. I am thinking that that area should be directly editable without going into the css - that is if it is just the content you want to change.
HTH a bit,