MyBB Community Forums

Full Version: Custom URL Links on homepage
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i need the plugin or code to have colorful links to like facebook and other stuff so that member can click on them and be sent to facebook

here is a pic

[Image: Untitled.jpg]



look at this please i need help
Just adjust the header template. Add the links below the <navigation> For example.

<div style="margin:0px auto;">
<a href=" url link " style="color: #color"> text </a> <br />
<a href=" url link " style="color: #color"> text </a> <br />
<a href=" url link " style="color: #color"> text </a> 
</div>

Other option is using classes in global.css and adding instead of style... class="class name"
For example link

Add this to global.css
a.one:link {color:#ff0000;}
a.one:visited {color:#0000ff;}
a.one:hover {color:#ffcc00;}

a.two:link {color:#ff0000;}
a.two:visited {color:#0000ff;}
a.two:hover {font-size:150%;}

And in the template make the links like:

<a class="one" href=" url link "> </a>
<a class="two" href=" url link "> </a>


Etc. will give you more free room to do a lot with the links.
Thanks for the help.