How to insert a div into another div without any of them breaking the line.
I want to do it this way because I'm developing a clan website and in the index you have to have the login button or the registry, I did that but when I ran the html it did the 2nd div line break. p>
<div id="menubarwidget">
<div id="register"><a href="?action=register">Registro</a></div>
<div id="login"><a href="?action=login">Entrar</a></div>
<!-- E se for o caso do $_COOKIE retornar um usuário já logado -->
<div id="loggedin" style="display: <?php echo $logged_display; ?>"><span id="username"><?php echo $logged_in_user; ?></span></div>
</div>