Quote:
Originally Posted by Igel1
@Lord Doys
How do you fix the bar across the top (abovebits in Mediawiki Template)
|
to make it float right again:
find in vbmediawikiforum.php (~line 955):
<ul class=\"popupgroup forumdisplaypopups\">" . $html . "
replace with
<ul class=\"popupgroup forumdisplaypopups\"style='float:right;'>" . $html . "
but to fix it to make them line up again...
the problem lies in the watch.icon css.. i dont have the time at the moment to figure out (didnt upgrade my live forums yet either)
play with these settings
/* Watch/Unwatch Icon Styling */
#ca-unwatch.icon a,
#ca-watch.icon a {
margin: 0;
padding: 0;
outline: none;
display: block;
width: 26px;
height: 14px;
}
#ca-unwatch.icon a {
background-image: url(images/watch-icons.png);
background-position: -43px 60%;
}
#ca-watch.icon a {
background-image: url(images/watch-icons.png);
background-position: 5px 60%;
}
#ca-unwatch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -67px 60%;
}
#ca-watch.icon a:hover {
background-image: url(images/watch-icons.png);
background-position: -19px 60%;
}
#ca-unwatch.icon a.loading,
#ca-watch.icon a.loading {
background-image: url(images/watch-icon-loading.gif);
background-position: center 60%;
}
#ca-unwatch.icon a span,
#ca-watch.icon a span {
display: none;
}