Quote:
Originally Posted by Manoel J?nior
Hello Last SuperMan help me with a question, please, as you did for notifications, logins and all are at the bottom and not on top?
I liked the way you did, it preserved the banner. I'm currently using template Ultimate Green SEO Themes.
Could you help me how to do?
|
Do a "search in templates" for .toplinks
It should be in the vbulletin-chrome.css template but in your custom or purchased style might be in additional.css if they've made any changes to that css class.
Code:
.toplinks {
position:absolute;
{vb:stylevar right}:{vb:math {vb:stylevar padding}*2};
top:0;
color:{vb:stylevar toplinks_link_color};
font: {vb:stylevar header_font};
text-align:{vb:stylevar right};
background:{vb:stylevar toplinks_background};
}
Change the "top:0;" to a new number then save and also refresh the forum page to see how it looks. If 10 does not work then change it to 10px (this is just to test) and see if it moves, once you see it move you can then keep entering in a new amount until it's positioned correctly.
Alternatively you can add this to additional.css template:
Code:
.toplinks {
margin-top:100px !important;
}
^ Same as with the other example i.e. change the 100px to a new value until it's positioned correctly.
Let me know

.