Skip to content

A big easy way to return to "home" forum view

Usually, in my experience, there is a big link to take people back to the forum page where all the sub-forum threads are listed.
Why not make the entire pic above with the logos in it a link right back to http://forum.baldursgate.com/ for easy navigation?

Comments

  • DeeDee Member Posts: 10,447
    Wish granted.
  • PhillipDaiglePhillipDaigle Member Posts: 654
    This was actually the previous behavior and it has now been restored. Please accept this animated gif as a reward for pointing this out.

    image

  • VintrastormVintrastorm Member Posts: 216
    I knew that there was a reason that I kept moving my mouse to that area of the screen all the time. :)

    P.s. That animated gif is scary. Next time please don't offer rewards. ;)
  • Troodon80Troodon80 Member, Developer Posts: 4,110
    edited September 2013
    It works on Google Chrome.

    However, just looking at the page code, it appears that the header is somewhat broken. Chrome is just better at parsing this, apparently. In Firefox, the code appears as so:
    <strong class="SiteTitle" "="" style="margin-left: auto; margin-right: auto; width: 80%;><a href=">
    <img alt="Baldur's Gate Forums" src="http://cdn.vanillaforums.com/baldursgate.vanillaforums.com/E8Y8YH9W47D5.jpg">
    </strong>
    First problem is that there is an equals symbol in quotations, and an extra quotation mark. There lacks a quotation mark at the end of the style, which in turn damages the <a> tag. Further, the <a> tag has only one quotation mark.

    Chrome shows it as such, including the extra <a> tag. In this case, it shows the first <a> tag as the one being eff-ed up rather than the <strong> tag.
    <strong class="SiteTitle" style="margin-left: auto; margin-right: auto; width: 80%;><a href=" "="">
    <a href="http://forum.baldursgate.com">
    <img src="http://cdn.vanillaforums.com/baldursgate.vanillaforums.com/E8Y8YH9W47D5.jpg" alt="Baldur's Gate Forums">
    </a>
    </strong>
    @ScottBrooks might know the answer.

    I would assume it should appear like so:
    <strong class="SiteTitle" style="margin-left: auto; margin-right: auto; width: 80%;">
    <a href="http://forum.baldursgate.com/" class="SiteTitle">
    <img src="http://cdn.vanillaforums.com/baldursgate.vanillaforums.com/E8Y8YH9W47D5.jpg" alt="Baldur's Gate Forums">
    </a>
    </strong>
    And I'm too late. Always too late.
    Post edited by Troodon80 on
Sign In or Register to comment.