Making links stand out as links in posts on my forum. Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    Making links stand out as links in posts on my forum.

    DrewBlank
    DrewBlank
    Forumember


    Posts : 78
    Reputation : 0
    Language : English

    Making links stand out as links in posts on my forum. Empty Making links stand out as links in posts on my forum.

    Post by DrewBlank January 10th 2010, 9:21 pm

    Hi!

    Is it possible to set up 'things' (for want of a better word), in a posting, or response, in a thread, so that when someone makes a link to a web site it automatically underlines and gives the link a certain color?

    At present, in my forum, links placed in a post don't stand out and just blend into the text of the post. At the moment I can't tell, nor can my members, whether a link is present unless you move your cursor over it. I know with other forum software you can set it up that way.

    I've been asked this by my forum members and I said I'd ask here as it is a bit of a nuisance. Or am I missing something obvious? I have tried underlining the link, but that doesn't work. It doesn't underline it.

    Thanks.
    Sanket
    Sanket
    ForumGuru


    Male Posts : 48766
    Reputation : 2830
    Language : English
    Location : Mumbai

    Making links stand out as links in posts on my forum. Empty Re: Making links stand out as links in posts on my forum.

    Post by Sanket January 11th 2010, 5:46 am

    Whats your forum version?
    dotDavid
    dotDavid
    Hyperactive


    Male Posts : 2404
    Reputation : 0
    Language : English

    Making links stand out as links in posts on my forum. Empty Re: Making links stand out as links in posts on my forum.

    Post by dotDavid January 11th 2010, 6:08 am

    Go to your colors management (ACP > Display > Colors) and there is a section for links.
    DrewBlank
    DrewBlank
    Forumember


    Posts : 78
    Reputation : 0
    Language : English

    Making links stand out as links in posts on my forum. Empty Re: Making links stand out as links in posts on my forum.

    Post by DrewBlank January 11th 2010, 8:21 pm

    Hi!

    Thanks dotDAVID, but that doesn't seem to work when I try it for what I actually want.

    Sanket, my version is phpBB2.

    It's the URL links that I insert into posts that I want to highlight and underline. Not sure if I explained properly.

    When you insert a link using the CHAIN icon when editing, or creating, a post, you put the URL in the top box and a name for the link (optional), in the lower box. When I do this the named link is never highlighted and I can't choose a colour that's different to the text.

    If I don't name the link, and just fill in the top box with the URL, it DOES underline, but my members want to be able to name the links and see the inserted URL links clearly highlighted compared to the text.

    Is this possible please, or am I missing the obvious again?

    Thanks in advance.

    DrewBlank :-)
    DrewBlank
    DrewBlank
    Forumember


    Posts : 78
    Reputation : 0
    Language : English

    Making links stand out as links in posts on my forum. Empty Re: Making links stand out as links in posts on my forum.

    Post by DrewBlank January 14th 2010, 12:59 am

    Hi! Can anyone help with this please? Look at my post directly above this one.

    Thanks.
    Reave
    Reave
    Forumember


    Male Posts : 46
    Reputation : 10
    Language : English

    Making links stand out as links in posts on my forum. Empty Re: Making links stand out as links in posts on my forum.

    Post by Reave January 14th 2010, 1:31 am

    Do you have your CSS on? If you do then try look for this code in your CSS. Then try to match mine or add them if you don't have them. Hope this helps

    This is for url links
    Code:
    .forumlink{
        font-weight: bold;
        font-size: 13px;
            text-decoration: underline;
        color : #ffffff;
        }
    a.forumlink{
    text-decoration: underline;
        color : #ffffff;
        }
    a.forumlink:hover{
    text-decoration: underline;
        color : #ffa500;
        }
    This is for text links
    Code:
    a.postlink:link{
    text-decoration: underline;
        color : #ffffff
    }
    a.postlink:visited{
    text-decoration: underline;
        color : #e4e4e4;
        }
    a.postlink:hover{
    text-decoration: underline;
        color : #ffa500
    }