LastCallGames Posted August 21, 2006 Posted August 21, 2006 Some more questions I have. I got the favicon up on my site (thanks to all who helped) but I'm having some trouble getting it on forums. If anyone can help with these questions, thank you. How do I make a border around highlighted links that doesn't stretch the text or move it? I know how to put a border around them, but everytime I do, it just moves the link on rollover. How do I get ads and a favicon on the forums? Quote
TCH-JimE Posted August 21, 2006 Posted August 21, 2006 Hello, Put your favicon into your forums folder. Ads - depends on the ads, but it will involve editting the template and putting in whatever javascript or html you have been given to display the ads with JimE Quote
owatagal Posted August 22, 2006 Posted August 22, 2006 If you want a border on your links in one state (say, unvisited links only), but you don't want it to appear in the other states (hovering and after it has been visited), you still need to declare a border, you just make it the same color as your background. For example, if I wanted a maroon border for unvisited links and the other to states to look like they don't have a border, in CSS I'd do this (assuming my site background is white): a:link { border: 1px solid #900; } a:visited { border: 1px solid #fff; } a:hover { border: 1px solid #fff; } The border is technically always there, but it's "invisible" in the last two declarations since it'll match the page background color. Your text doesn't shift, because the border's always present. Hopefully that makes sense. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.