I'm trying to use the SmartTabs in a Suivant ReadyTheme. If one of the panels is just text, it looks good. But if a panel has images in it, it misbehaves handing some of the content below the bottom border. I'd post a URL but the (dev) site is in a password protected directory. I was hoping that maybe someone else has had this issue and was able to fix it. Using CSS clear does not work.
Announcement
Collapse
No announcement yet.
SmartTabs - part deux
Collapse
X
-
SmartTabs - part deux
Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Tags: None
-
Hi Leslie,
When you are initializing the tabs in your scripts file, are you passing any value to the 'contentHeight' variable?
Matt Zimmermann
Miva Web Developer
Alchemy Web Development
https://www.alchemywebdev.com
Site Development - Maintenance - Consultation
Miva Certified Developer
Miva Professional Developer
https://www.dev4web.net | Twitter
-
Originally posted by Matt Zimmermann View PostHi Leslie,
When you are initializing the tabs in your scripts file, are you passing any value to the 'contentHeight' variable?
contentHeight: 'auto'
I may have to send you access so you can look at it. I'm not sure if my latest round of CSS tweaks has resolved the issue or not. All the other tabs are working fine and adjusting as expected. It's just tabs that have an image in the content.Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
-
Try adding this to your pages or theme style sheet:
Code:.product-information--description { overflow: auto; }
Matt Zimmermann
Miva Web Developer
Alchemy Web Development
https://www.alchemywebdev.com
Site Development - Maintenance - Consultation
Miva Certified Developer
Miva Professional Developer
https://www.dev4web.net | Twitter
- 1 like
Comment
-
Originally posted by Matt Zimmermann View PostTry adding this to your pages or theme style sheet:
Code:.product-information--description { overflow: auto; }
Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
-
So where would I use the product-information--description class at? Inside the <dd>'s?
Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
-
The class is already attached to the containing DIV, so adding the declaration to the style sheet is all that is needed.Matt Zimmermann
Miva Web Developer
Alchemy Web Development
https://www.alchemywebdev.com
Site Development - Maintenance - Consultation
Miva Certified Developer
Miva Professional Developer
https://www.dev4web.net | Twitter
Comment
-
That's what I'm saying, I'm not using that div. I have the tabs in their own content item, so I'll wrap this around it:
Code:<div class="column whole np product-information--description">
Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
-
All that did was make the content scrollable - it didn't fix the problem of the content being outside the tab "box".Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
-
I'm wondering if I have a broken div within the content for the tab that is giving me the most problems. I will check that.
Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
-
So, I seem to have all the content inside the within the <dd> but now the <div> that the whole thing is in, is not being pushed down. It's behaving like a drop down menu with the wrong z-index and is displaying under and over the footer content. So how do I get it to stay inside the div?Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
-
Originally posted by lesliekirk View PostSo, I seem to have all the content inside the within the <dd> but now the <div> that the whole thing is in, is not being pushed down. It's behaving like a drop down menu with the wrong z-index and is displaying under and over the footer content. So how do I get it to stay inside the div?
Code:// ---- Conform all subcategory and/or product DIVs to same height ---- // cornerstoneUX.sharedFunctions.conformDisplay(); cornerstoneUX.sharedFunctions.conformDisplay('.category-product');
Leslie Kirk
Miva Certified Developer
Miva Merchant Specialist since 1997
Previously of Webs Your Way (aka Leslie Nord leslienord)
Email me: [email protected]
www.lesliekirk.com
Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr
Comment
Comment