Not signed in (Sign In)

Categories

Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.

Help keep Vanilla free:
Welcome Guest!
Want to take part in these discussions? If you have an account, sign in now.
If you don't have an account, apply for one now.
  1.  # 1
    hey,
    me again... just found a weird thing. i inserted some navigation on top of my sidepanels with the sidepanel add-on. directly below it is the guest sign in form. now the whole guest sign in container moves down every time i move the cursor over the navigation links on top. everything else stays where it's supposed to. you can have a look here http://www.travel-junkie.com/forum/. do yourself a favour and use the internet explorer if you do have a look. in ff everything still looks messed up. will work on that part later on. can't be bothered right now.
    it'd be great if you could point me in the right direction.
    cheers, bo
    •  
      CommentAuthorjimw
    • CommentTimeSep 3rd 2006 edited
     # 2
    After validating this, I saw an extra </a> after travellogues.
  2.  # 3
    jimw:

    thanks for this. deleted the extra </a>, but it's still happening.
    •  
      CommentAuthorjimw
    • CommentTimeSep 3rd 2006 edited
     # 4
    It's only happening when you mouse over the first 2 items. Strange! I created a little extension to add such a sidepanel block. See if this works.

    <?php
    /*
    Extension Name: Panel Link List
    Extension Url: http://www.jwurster.us/gfe/
    Description: Adds a list of links to the side panel of the page.
    Version: 1.0
    Author: Jim Wurster
    Author Url: http://www.jwurster.us/
    */
    $Context->Dictionary['LinkList'] = "Links";

    if (in_array($Context->SelfUrl, array("index.php", "account.php", "categories.php", "comments.php", "post.php", "search.php", "settings.php"))) {
    function GetPanelLinkList(&$Context) {
    $PanelLinkList = "\n<ul><li><h2>" . $Context->GetDefinition('LinkList') . "</h2></li>\n";
    $PanelLinkList .= '<ul>';
    $PanelLinkList .= '<li><a href="http://www.jwurster.us/wordpress/">Blog</a></li>';
    $PanelLinkList .= '<li><a href="http://www.wurster.ws/wordpress/">New Blog</a></li>';
    $PanelLinkList .= '<li><a href="http://www.jwurster.us/photo/">PhotoAlbum</a></li>';
    $PanelLinkList .= '</ul>';
    $PanelLinkList .= "</ul><br />";
    return $PanelLinkList;
    }

    $Panel->AddString(GetPanelLinkList($Context),3);
    }
    ?>
  3.  # 5
    thanks a lot for this, jim. it works now. the problem seemed to be that there was no text between the h2 tags before. when i delete it out now the guest sign in moves down again. strange. when i'm signed there were no problems at all with the other stuff in the sidebar.
    anyway, thanks again, bo
Add your comments
    Username Password
  • Format comments as