Announcement

Collapse
No announcement yet.

Missing Sidebar!

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Missing Sidebar!

    Hi, I'm using a clean layout and have sidebars both sides, including my homepage. Unfortunately, the sidebar on my homepage won't display, only shows on the left. Very annoying on makes my home page look unbalanced. On one occasion, on updating my site the sidebar was showing on both sides - but not since!
    Any suggestions?

    www.oliveorganic.com
    Last edited by oliveorganic; 05-Apr-2006, 05:42 PM. Reason: forgot web add!

    #2
    It looks like your Act_BrochurePrimary template has a bit missing - maybe you've modified your template mistakenly. The last part of the page after your bookmark code does not look correct. Check this piece again in your template:
    Code:
    </script><a href="javascript:addbookmark()"><font color="#996699">Add OliveOrganic to your favourites </font></a></font></p><p align="center">&nbsp;</p><p> <script language="JavaScript"><BR></td></tr></table></td></tr> </table></td></tr></table></td><td valign="top" width="110" background="acatalog/palette3bg.gif">&nbsp;</td></tr></table> <SPAN CLASS="actxxsmall"><div align="center"><h4><a href="http://www.actinic.co.uk/referrer/Landing.php4?MerchantID=0"><font face="Arial, Helvetica, sans-serif" size="1"> Powered by Actinic</font><img src="acatalog/PoweredByActinic.gif" width="22" height="15" border="0" alt="Actinic Ecommerce Shopping Cart Software"><br><font face="Arial, Helvetica, sans-serif" size="1"> Ecommerce Software Shopping Cart Solutions</font></a></h4></div></BODY></HTML>
    You also have a missing closing tag after the safebuy link and incorrect quotes. The Actinic reference does not show on the page etc.
    Code:
    <a href='http://www.safebuy.org.uk/members/health/member506134.htm'</a>
    Hopefully this will lead you in the right direction.

    Comment


      #3
      Thanks for your help. My 'add to faves' bit was an html fragment. Haven't played about with the templates at all. I've taken out the add to faves fragment and now everything is showing correctly.
      Where do I add the add to faves bit in the template so that it's in properly 'in' without affecting the rest of my home page?
      Thanks in advance!

      Comment


        #4
        What I have done for this is as follows:-

        Just before the end of </HEAD> add:
        Code:
        <!--//  Hide script from older browsers 
        var urlAddress = "http://www.mydomain.co.uk/acatalog/index.htm";
        var pageName = "Name of Page";
        function addToFavorites()
        {
        if (window.external)
        {
        window.external.AddFavorite(urlAddress,pageName)
        }
        else
        { 
        alert("Sorry! Your browser doesn't support this function.");
        }
        }
        // -->
        Then where you want in your template body (Act_BrochurePrimary and/or Act_Primary) add:
        Code:
        <a href="javascript:addToFavorites()" >Add to Favourites</a>

        Comment

        Working...
        X