I've been trying to inspect this page using Firebug:
My goal is to align the top-right section for login/signup all the way to the right, but I'm struggling to figure out how. I attempted to wrap that content in its own div called site_login, but it didn't have the desired effect.
Any suggestions on how I can position that content further to the right so that it appears more balanced and symmetrical?
This is what my CSS currently looks like:
.banner .site_login {
height: 20px;
position: absolute;
float:right;
right: 0.5em;
top: 0.5em;
color: #fff;
}
.banner .site_login a
{
color: #fff;
text-decoration: underline;
}
.banner .site_login a:hover
{
color: #ff0;
}
Appreciate any help you can provide!