Hi all,

I thumbed through the other issues to try and find similar problems, I did see any. I am having an issues with one page loading all the tabs, but the content only loads on some. I have checked and rechecked all of the common mistakes. I have used this on many other pages, so I know the module has worked on 17 other pages, one of which has nested tabs. I am using the sky style, and I have the AJAX loading all the tabs content on the page load. The page with the issue only has 5 tabs, none of which are nested. I have checked many times to see if I inputed the correct node. The individual node loads just fine. Some of them are suppose to be loading a preview of a pdf through acrobat.com (do not know if that matters) others are not. I have checked the issue on ie, ff, opera, and safari, they are all the same. Firebug does not show me any errors. I have checked all the configuration of the block, everything seems fine. I am stumped. I am sure it is something I have over looked, but I have been racking my brain for days over this. The quick tab page I am talking about is here. Here is the individual nodes that are loading just fine on their own. Conseco How To and Conseco Forms. Like I said, I have checked that I put in the correct nodes in quicktabs by copy and pasting to make sure it is just not a typing errors. Still not working. There are 17 other pages that give me no problem. Why would it work on everything else, but not this particular page? Please Help! Thanks in advance.

Comments

pasqualle’s picture

Version: 6.x-3.x-dev » 6.x-2.0-rc3

there is a missing </div> on http://www.tidewatermg.com/insureit/?q=conseco_howto. That messed up the quicktab markup and put the tabpages inside the second tabpage..

<div id="quicktabs_container_17" ..>
  <div id="quicktabs_tabpage_17_0" ..>
  <div id="quicktabs_tabpage_17_1" ..>
    <div id="node-50" ..>
    <div id="quicktabs_tabpage_17_2" ..>
      <div id="node-67" ..>
      <div id="quicktabs_tabpage_17_3" ..>
      <div id="quicktabs_tabpage_17_4" ..>

when it should be

<div id="quicktabs_container_17" ..>
  <div id="quicktabs_tabpage_17_0" ..>
  <div id="quicktabs_tabpage_17_1" ..>
  <div id="quicktabs_tabpage_17_2" ..>
  <div id="quicktabs_tabpage_17_3" ..>
  <div id="quicktabs_tabpage_17_4" ..>

when inserting nodes into quictabs always make sure that the html is valid
use http://validator.w3.org/
or the firefox plugin: Html Validator

pasqualle’s picture

Status: Active » Postponed (maintainer needs more info)

the missing </div> is still not fixed on the page.. changing the issue status..

dietrying0’s picture

Thank you for your response. Sorry I took so long to check back. I looked over the code. I am a little confused of how and why the extra div tags are getting put into just those nodes. For every "how to" and "forms" node I have been copy and pasting (with just changes in the download link and object tags) the code I place in the body. Here is the basic structure I have been using. Please excuse the ugly code, I am still learning.

<div id="download">
<div class="link">
<a href="">Download PDF Here<img src=""></a>
</div>
<div class="info">
Click Top Right Button To Make It Full Screen</div>
</div>
<br><br><br>
<object> 
   <embed> 
   </embed> 
</object>

Are the div tags being generated from a module or something else? That is not really a question related to this subject, sorry for my ignorance I am still a newbie. There is no difference between the code I am placing in the nodes body of the pages that are working and the pages that are not working, other than the links and such. I did a test and created the brand new pages of everything that is on the conseco page, created a new quicktabs, and this time I did not copy and paste, and hand wrote the code inside. I looked over it carefully to make sure there was not mistakes. Still the same results. So I copied the code from other working pages, still the same result. Why are these div tags showing up? I will keep troubleshooting in the mean time. I really do appreciate you taking the time to help answer questions.

pasqualle’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

The QT module generates valid HTML. The invalid HTML most probably comes from the theme, as the web site has many other errors also..
I can't help with fixing a custom theme, please use the tools mentioned in comment #1