Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Need help with button placement Re: Need help with button placement

#113049
sheepysheep60
Participant

I would add this css to your current style sheet or classes in the style sheet:

.socialize-buttons{
position:relative;
}

.socialize-button{
position: absolute;
top: 50px;
}

that will line up both the buttons but they will be on top of each other. To move one of them to the right a bit, I’d add another bit of css like:

.socialize-button:last{
left: 100px;
}