Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

guest sign in add-on problem

edited September 2006 in Vanilla 1.0 Help
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

Comments

  • edited September 2006
    After validating this, I saw an extra </a> after travellogues.
  • jimw: thanks for this. deleted the extra </a>, but it's still happening.
  • edited September 2006
    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); } ?>
  • 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
This discussion has been closed.