Adding new editable block next to another
Permalink
This is what I am trying to do: I want to place my site login/logout button there right next to the logo:http://www.thebrazilianlanguage.com.... It should fit right next to the logo. There is plenty of room for it, Im just not sure how to make it happen. Where I have that logo at, I identified it as div id="areaStyleLogo528" using Google chrome, but I am unsure where to style this. How can I make this editable block wider? or add a new editable block area right next to that one?
You need to edit your theme files. Probably
and
Find this:
after that, add this:
Then add the appropriate styles to the styles.css file. You might want to float it left, but this depends on the #logo div.
#NewLogin{width:200px; float:left;}
Hope this helps :)