1. Attachments are working again! Check out this thread for more details and to report any other bugs.

Underlined hyperlinks?

Discussion in 'PriusChat Website Questions' started by Danny, Jul 28, 2005.

  1. Danny

    Danny Admin/Founder
    Staff Member

    Joined:
    Nov 24, 2003
    7,093
    2,108
    1,174
    Location:
    Charlotte, NC
    Vehicle:
    2013 Prius Plug-in
    Model:
    Plug-in Base
    I changed the hyperlinks to be underlined. Unfortunately, I don't know how to edit the CSS file so that only hyperlinks in the forum posts are underlined, so now everything is - Forum names, the Board Navigation links, etc.

    What do you guys think? The underlining kind of annoys me, but I'm up for hearing your input.

    Thanks!
     
  2. TonyPSchaefer

    TonyPSchaefer Your Friendly Moderator
    Staff Member

    Joined:
    May 11, 2004
    14,816
    2,498
    66
    Location:
    Far-North Chicagoland
    Vehicle:
    2017 Prius Prime
    Model:
    Prime Advanced
    I figured you were playing around with the formatting. Planned on giving it time and all would be back to normal.

    I agree that the underlines are a tad annoying. At first I thought that it would be great for new members to get a feel for all the things that are clickable on a page. But after a while I just decided that it's annoying.

    For example, in the Board Nav box, of course those items are clickable. In the "Who is Online" box, it's harder to read the names with them all underlined. The "View posts..." in the User Info box, of course those are clickable.

    I vote to remove them - when you figure out how. :cool:

    I'm not websmith, but can you change the forum post links to another style? I'm sure that if I've thought of that, you've though of that.
     
  3. dreichla

    dreichla New Member

    Joined:
    Feb 21, 2005
    2,230
    0
    0
    Location:
    Connecticut
    I can see that things don't look as visually "neat" as they used to. But it really doesn't bother me one way or the other.

    Like anything - once you get used to it - you tend to forget about it.
     
  4. bnlfanmatt

    bnlfanmatt Member

    Joined:
    Jul 7, 2004
    253
    2
    0
    Location:
    Southwest suburbs of Chicago
    I didn't like them from the moment I first saw them. I thought maybe it would go away, and so definitely would like to see it gone.
     
  5. Tideland Prius

    Tideland Prius Moderator of the North
    Staff Member

    Joined:
    Oct 2, 2004
    44,933
    16,155
    41
    Location:
    Canada
    Vehicle:
    Other Non-Hybrid
    Model:
    N/A
    I'd prefer they not be there but Tony makes it a point. It does help those who are new navigate the board (like how I couldn't find "New Posts" on HiHyChat). I guess underline is ok but for the links to the threads on the main frame, I find it a bit intrusive. Otherwise, the underline in the boxes on the left are fine with me.
     
  6. wrprice

    wrprice Active Member

    Joined:
    Jul 11, 2005
    415
    308
    0
    Location:
    Houston, TX
    Vehicle:
    2016 Prius
    Model:
    Four Touring
    try using:

    td.postbody a
    { text-decoration: underline; }

    "td<period>postbody<space>a"
    means "anchor (a) elements contained inside a table cell (td) element that has a class name of "postbody"
     
  7. NuShrike

    NuShrike Active Member

    Joined:
    Feb 21, 2005
    1,378
    7
    0
    Vehicle:
    2005 Prius
    Model:
    Five
    Ah, and I thought Firefox went crazy because home had underlines, work didn't.

    So anyways, looking at the HTML source, for any forum post that uses [ url ], when it translates into the , have it generate instead:


    with CSS of:
    a.postbody { text-decoration: underline; }

    Or, just use exactly what wrprice said because it'll more efficient.
     
  8. efusco

    efusco Moderator Emeritus
    Staff Member

    Joined:
    Nov 26, 2003
    19,891
    1,192
    9
    Location:
    Nixa, MO
    Vehicle:
    2004 Prius
    Model:
    N/A
    Yea, ditch the underlines, too busy.
     
  9. Danny

    Danny Admin/Founder
    Staff Member

    Joined:
    Nov 24, 2003
    7,093
    2,108
    1,174
    Location:
    Charlotte, NC
    Vehicle:
    2013 Prius Plug-in
    Model:
    Plug-in Base
    Ok, I changed it back. Also, I tried editing the css file to add what you guys posted, but I can't get it to work.

    Here's the source code to take a look at if you want.
     
  10. NuShrike

    NuShrike Active Member

    Joined:
    Feb 21, 2005
    1,378
    7
    0
    Vehicle:
    2005 Prius
    Model:
    Five
    Well, I tried downloading a PriusChat page to my desktop. Then I went to the viewtopic.php_files directory Firefox created and checked the fisubice.css in there. The content is not the same as the fisubice.txt you posted. It's missing the line you added to fisubice.txt.

    I edited "viewtopic.php_files/fisubice.css" in viewtopic.php.htm to read "fisubice.css" so it would read the one off my desktop which I downloaded. Next, I loaded the .htm into Firefox, and links underline correctly in the postbody as we are intending.

    So my question is are you sure you're editing the right .css file? Supposedly it's in the "templates/fisubice/" directory?

    Also, make sure the:
    td.postbody a { text-decoration: underline; }

    is on one line.
     
  11. NuShrike

    NuShrike Active Member

    Joined:
    Feb 21, 2005
    1,378
    7
    0
    Vehicle:
    2005 Prius
    Model:
    Five
    Hey Danny, looks like you got it!

    So only thing to 'pretty up' is to move that css to one line, otherwise it looks good.
     
  12. Danny

    Danny Admin/Founder
    Staff Member

    Joined:
    Nov 24, 2003
    7,093
    2,108
    1,174
    Location:
    Charlotte, NC
    Vehicle:
    2013 Prius Plug-in
    Model:
    Plug-in Base
  13. Danny

    Danny Admin/Founder
    Staff Member

    Joined:
    Nov 24, 2003
    7,093
    2,108
    1,174
    Location:
    Charlotte, NC
    Vehicle:
    2013 Prius Plug-in
    Model:
    Plug-in Base
    And a test using text:

    Yahoo
     
  14. Danny

    Danny Admin/Founder
    Staff Member

    Joined:
    Nov 24, 2003
    7,093
    2,108
    1,174
    Location:
    Charlotte, NC
    Vehicle:
    2013 Prius Plug-in
    Model:
    Plug-in Base
    Woo hoo! Thanks guys.

    You have no idea how long I've been trying to figure that one out....
     
  15. MarinJohn

    MarinJohn Senior Member

    Joined:
    Feb 6, 2004
    3,945
    304
    0
    Go Danny GO! BTW do you have a P yet?
     
  16. Danny

    Danny Admin/Founder
    Staff Member

    Joined:
    Nov 24, 2003
    7,093
    2,108
    1,174
    Location:
    Charlotte, NC
    Vehicle:
    2013 Prius Plug-in
    Model:
    Plug-in Base
    Nope, crossing my fingers for this fall. Believe me, EVERYONE's going to hear about it when I get it :)
     
  17. NuShrike

    NuShrike Active Member

    Joined:
    Feb 21, 2005
    1,378
    7
    0
    Vehicle:
    2005 Prius
    Model:
    Five
    Hey Danny, have you using any of these software add-ons and techniques to help speed up PriusChat as it is currently being used to speed Wikipedia?
     
  18. jimofdg

    jimofdg New Member

    Joined:
    Jul 10, 2004
    533
    0
    0
    Location:
    DG, IL, US
    On topic: I liked the pages without underlined links and I am glad Danny was able to restore that. Gilbert & Sullivan had a song about how common one can become when everyone is special, and the underlining of nearly all text reminded me of that.

    Off topic: Around the time the underlined links appeared, I have lost one ability in my use of the website, and maybe it can be fixed. When I list all posts since my last visit, there are likely to be more than 50 such posts. That means the result of listing new posts will have multiple pages.

    I cannot usually view pages "2" or Last, but sometimes page "3" or "4" will display. When there is a problem, the page will say "Your search did not return any results."

    I find the number of posts found (since last visit) to be accurate, but the number in the "User Info" box at left to have an unexplainably larger number, that is not useful to me. Hope this helps.