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
(2015-09-13, 11:59 AM)mmadhankumar Wrote: [ -> ]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...

Still same thing is wrong with it but now the image wont show up.
Pages: 1 2