MyBB Community Forums

Full Version: Second unwanted icon on toplinks
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
After i made a new toplink, i added my icon but there is still a magnifing glass there. How do i get rid of it?
Does this with every toplink i add.

http://prntscr.com/8fsnby
Please provide url
im just gonna pm it to you
even though now the icon is gone and i have the one i wanted, the i icon i kinda to high from where it should be.
(2015-09-13, 11:28 AM)Project_ Wrote: [ -> ]even though now the icon is gone and i have the one i wanted, the i icon i kinda to high from where it should be.

may i have your forum url...
add this to global.css and Hard Refresh (Ctrl+F5) the forum to check the changes...

a.rules img {
    vertical-align: middle;
}
The image aligned but it the whole thing is kinda away from the other
hmmm... it takes the space for that additional image as well... its better to put it this way...

change the menu link from this..

<a class="rules" href="rules.html" target="_blank">
<img src="images/portal2/toplinks/rules.png" alt="images/portal2/toplinks/rules.png" title=" Rules">Rules</a>


to this.... that is remove the img tag...

<a class="rules" href="rules.html" target="_blank">Rules</a>


and in global.css edit the css for the a.rules as below...

#logo ul.top_links a.rules {
    background-image: url(images/portal2/toplinks/rules.png);
}


you can also remove that vertical align css suggested above.. it may not be required now...
Pages: 1 2