Add-on What is this addon/how do I do it?

Im very bad at html, any chance you could write me a template for this? xD


Basic html/css from another site:

Place this into ad_header
Code:
<div id="rightBox">
   Connect to our ts3<br>
   <a href="#">ts3.teamspeak.com</a>
</div>

CSS in extra.css
Code:
#rightBox
{
background-color: rgba(0, 0, 0, 0.3);
border-radius: 4px;
color: #FFF;
float: right;
margin: 15px 20px 0 0;
padding: 12px;
}
#rightBox a:link {
color: #176093;
font-weight: bold;
}
@media (max-width:@maxResponsiveWideWidth) {
#rightBox { display: none; }
}

Should do the trick,
 
Basic html/css from another site:

Place this into ad_header
Code:
<div id="rightBox">
   Connect to our ts3<br>
   <a href="#">ts3.teamspeak.com</a>
</div>

CSS in extra.css
Code:
#rightBox
{
background-color: rgba(0, 0, 0, 0.3);
border-radius: 4px;
color: #FFF;
float: right;
margin: 15px 20px 0 0;
padding: 12px;
}
#rightBox a:link {
color: #176093;
font-weight: bold;
}
@media (max-width:@maxResponsiveWideWidth) {
#rightBox { display: none; }
}

Should do the trick,
Thanks (:
 
Top Bottom