Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Hey Q,
When I built this the first round om 1.3.02, I did not need to mod anything to make the text flow down along the right of the image as you can see from the test active site in the previous posts. I alos used the non-admin version of tabs which was the only difference other the the versions now.
So, there has to be a quick way to do this, I did a compare on the files from 1.3.0.2 and 1.3.7 and there are so many changes I don't really know where to start.
Oh yea there is a quick way for this, I know where the fix is. The reason it was done that way was to make room for the product details like stock qty, model number, and "ask a question" link on the right side of the picture.
But if you are not using them then you would have a big space like you say. I'm just wondering if there is an easier way to do it when I release an updated tabbed products lite file. I think it would probably make sense for me to add the clear:both to the css so you could remove it easily without code change. For now, the fix is
FIND in templates/tpl_tabbed_products_lite.php
Code:
<!--eof Product details list -->
<br class="clearBoth" />
REMOVE this:
Code:
<br class="clearBoth" />
FIND in templates/tpl_product_info_display.php
Code:
<!--eof Product details list -->
<br class="clearBoth" />
REMOVE this:
Code:
<br class="clearBoth" />
Quote:
Originally Posted by
IntelCos
Also, I'm not sure that update fixes all the issues in regards to the rollovers. Will see, but after getting it to finally work with all the reverts, not sure I want to got a round 3 on this.
Thou musn't doubt the Q! All is perfect when the Great and Powerful Q puts his name on it. so yes.. the entire 1.3.6 Easy Rollovers contrib could not work at all the way it was.. the readme was correct, but the foldername was just confused. it works as expected now, Guaranteed!
You can get it here: http://www.zen-cart.com/forum/showth...768#post324768 since its not yet approved to the downloads area yet.
Re: Tabbed Products ''LITE'' version - Delimiter based
I could not find anything on this and I can't seem to figure out what the problem is but only some of the products show up for some reason. For example this one has no info that comes up
http://thegaslightcompany.com/index....roducts_id=184
but this one comes up fine
http://thegaslightcompany.com/index....roducts_id=186
I removed some of the products and readded them but that did not seem to fix it and I have no idea why half work and half don't.
Re: Tabbed Products ''LITE'' version - Delimiter based
For now I just took Tabbed Lite out since I cant figure out the problem and I am very new at this.
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
Shtocoh
I don't see a description on either one of those products. Nor do i see the tab code. Are you sure you extracted it to the right places. I see you removed the tab stuff for now but I still don't see product descriptions
Re: Tabbed Products ''LITE'' version - Delimiter based
I's got's da Q's and da I's and that makes....
Re: Tabbed Products ''LITE'' version - Delimiter based
Q is da man,,,hehe
The tab fix of yours was what I needed, looks better now. One question. Can't seem to figure our the text left and right inner padding. If you notice, the text does a ########-kiss and I've tried a few things, but whacks out the border alignment,,,
maybe cause I got buggy-eyes from doing the tpl square dance:shocking: :lamo: :down: :cool:
Figured I'm on a roll so why not hit for numba 2...
Re: Tabbed Products ''LITE'' version - Delimiter based
Q, did you find out a way to increase the inner padding of the tab so that the text does not buttkiss as it does on the build I'm doing. This seems to avoid my eyes, then again, maybe more coffee:smartass:
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Q, did you find out a way to increase the inner padding of the tab so that the text does not buttkiss as it does on the build I'm doing. This seems to avoid my eyes, then again, maybe more coffee:smartass:
Without being able to test:
Try this:
in stylesheet_tablitev3_xxxx.css
add:
.tabcontent{
padding: 5px;
border: 1px solid;
background: white;
color: black;
display:none;
}
Re: Tabbed Products ''LITE'' version - Delimiter based
Ok, that works, but now gives me the issue of the header band under the tabs, what would I do to have this under the tabs between the container. I can't seem to figure that out yet...I owe ya a beer or two:wink2:
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Ok, that works, but now gives me the issue of the header band under the tabs, what would I do to have this under the tabs between the container. I can't seem to figure that out yet...I owe ya a beer or two:wink2:
Not sure I understand. You mean the header bar is also padded too much and u want it directly under the tabs?
Just change
padding: 5px;
to
padding: 0px 5px 5px 5px;
(read it clockwise: top right bottom left)