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?

 
RMDWebDesign replied on at Permalink Reply
RMDWebDesign
Hi Daniel,

You need to edit your theme files. Probably
themes/YourTheme/default.php

and
themes/YourTheme/style.css



Find this:
</div><!-- #logo -->


after that, add this:
<div id="NewLogin">
<?php $a = new GlobalArea('New Login'); $a->display($c); ?>
</div>


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 :)