Getting the reftagger control panel into blogger

Steven Tammen
Steven Tammen Member Posts: 5 ✭✭
edited November 2024 in English Forum

Hello, I recently got reftagger installed on my blog without a hitch due to the tutorial put up on the reftagger website. However, I would like to give readers the option of changing versions if they would so prefer, something that used to be possible through the reftagger control panel (which is no longer supported?). The code necessary for installing the control panel can be found at https://www.logos.com/images/reftagger/reftagger-cp-w.html. The code that goes in the header works fine and does not cause errors with the validator program. However, when I paste the body of the code for the control panel into my template I get 3 different errors. See the bolded parts: (this is only the tail end of the full code for the panel)

<div id="lbsLibronixContainer">
      <input id="lbsUseLibronixLinks" type="checkbox">
      <label for="lbsUseLibronixLinks">Libronix</label>
    </div>
    <div id="lbsSaveContainer">
      <input value="Save" id="lbsSave" onclick="javascript:Logos.ReferenceTagging.lbsSavePrefs()" type="button">
      </div>
    <div id="lbsFooter">
      <div id="lbsLogo"><a href="http://www.logos.com/"><img src="http://www.logos.com/images/Reftagger/transparent.gif" alt="Logos Bible Software" title="Logos Bible Software" border="0" height="19" width="64"></a></div>
      <a href="http://www.logos.com/demo">Bible Study Software</a></div>
    </div>
<!-- End RefTagger Control Panel. For more info visit http://www.logos.com/reftagger. -->

For whatever reason, blogger does not think that the elements <input ______ > and <img _____> are closed, and will not parse the XML until the matching end tag </input> or </img> is included (depending upon which element we are trying to close). Could anyone who has the control panel on their blogger blog or who has experience with HTML help me figure this out? I could give a link to my blog or a picture of the error message the HTML reader is giving me if that would be helpful. Thanks in advance.

Comments