Page 1 of 3 123 LastLast
Results 1 to 10 of 26

Thread: Invisible links in topics

  1. #1

    Invisible links in topics

    As a suggestion, could you change the color of the links inside the threads. I can't read the gold letter against this cyan-gray background. Am I the only one?

    http://doyoureadthis.com?

    Thx!

  2. #2

    Invisible links in topics

    No, you're not the only one. I don't like the link color either. There's a way in CSS, if the post sections have an ID, to color them seperately. Just a heads up.

  3. #3

    Invisible links in topics

    The issue was on admins to do list for a very long time now, for now you can do something like [ url=http://www.something.html] [ u ]something[ /u ][ /url ] to make your own links a bit easier for the eye.

  4. #4
    Legendary Member NecroDOME's Avatar
    Join Date
    Mar 2004
    Location
    The Netherlands, Eindhoven
    Posts
    1,059

    Invisible links in topics

    I only can read it clearly when im hoverig my mouse over it...
    NecroSOFT - End of line -

  5. #5

    Invisible links in topics

    CSS:
    Code:
    postbody > a {
      color: #0044BB; /* or whatever */
    }
    THAT'S ALL you need in the style sheet! Now, if you want the mouseover and visited states then that's easy enough.

    Code:
    postbody > a:link {
      color: #0044BB; /* or whatever */
    }
    
    postbody > a:hover {
      color: #0044BB; /* or whatever */
    }
    
    postbody > a:visited {
      color: #0044BB; /* or whatever */
    }
    
    postbody > a:active {
      color: #0044BB; /* or whatever */
    }
    I don't see the problem. You change that to your colors and voiala! we can read it, and it only changes the stuff within the post body. Backup the stylesheet and try if you don't believe me. Just fix it and take it off the todo list, please, seeing as I've shown how it'll only take you a second to do.

  6. #6

    PM the admin

    The question is, who is the user in charge here? We can PM and let him know the changes to do. I have been admin in other phpBB forums, and many times I didn't notice member's request because I didn't have time to read all the posts. :roll:

  7. #7

    Invisible links in topics

    It's Will and Savage. Not sure of who else get's admin/skinning rights, but I know Will won't miss this.

  8. #8
    Legendary Member cairnswm's Avatar
    Join Date
    Nov 2002
    Location
    Randburg, South Africa
    Posts
    1,537

    Invisible links in topics

    WILL is away for a good few weeks still - not sure that savage has access at the right level to chnage it - anyone want to hack the server to fix it :lol:
    William Cairns
    My Games: http://www.cairnsgames.co.za (Currently very inactive)
    MyOnline Games: http://TheGameDeveloper.co.za (Currently very inactive)

  9. #9

    Invisible links in topics

    If anyone can tell me which files to change I can do it. On DelphiGamer Dean and I wrote most of the site so I knew the php code quite well.
    But on this site, WILL has put it all together himself, so if others on here know what phpBB files need changing I can dig around this week-end and make it so.
    <br /><br />There are a lot of people who are dead while they are still alive. I want to be alive until the day I die.<br />-= Paulo Coelho =-

  10. #10

    Invisible links in topics

    That'd be the style sheet.
    Code:
    <link rel="stylesheet" href="templates/subSilver/subSilver.css" type="text/css">

Page 1 of 3 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •