MyBB Community Forums

Full Version: Can't position weather button...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
No matter what I do, it stays in the top left corner. I want it in the top RIGHT corner, any suggestions?

Quote:#weather button {
height: 90px;
width: 240px;
top: 0px;
right: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: auto;
margin-left: auto;
left: auto;
bottom: auto;
background-color: #FFF;
clip: rect(0px,0px,auto,auto);
position: fixed;
have you tried #weather {float: right;}
This also keeps it in the top left corner:

Quote:}
#weather button {
height: 90px;
width: 240px;
background-color: #FFF;
float: right;
where you have that weather box ? on the main site div element is weather hence suggestion is #weather {float: right;}
That worked, thanks ranjani!