Page 89 of 120 FirstFirst ... 3979878889909199 ... LastLast
Results 881 to 890 of 1194
  1. #881
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    Quote Originally Posted by IntelCos View Post
    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 View Post
    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.
    Last edited by qhome; 5 Feb 2007 at 08:56 PM.

  2. #882
    Join Date
    Feb 2007
    Posts
    18
    Plugin Contributions
    0

    Default 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.

  3. #883
    Join Date
    Feb 2007
    Posts
    18
    Plugin Contributions
    0

    Default 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.

  4. #884
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    Quote Originally Posted by Shtocoh View Post
    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.
    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

  5. #885
    Join Date
    Apr 2004
    Location
    Montreal
    Posts
    755
    Plugin Contributions
    1

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    I's got's da Q's and da I's and that makes....
    IntelCos

  6. #886
    Join Date
    Apr 2004
    Location
    Montreal
    Posts
    755
    Plugin Contributions
    1

    Default 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

    Figured I'm on a roll so why not hit for numba 2...
    IntelCos

  7. #887
    Join Date
    Apr 2004
    Location
    Montreal
    Posts
    755
    Plugin Contributions
    1

    Default 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
    IntelCos

  8. #888
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    Quote Originally Posted by IntelCos View Post
    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
    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;
    }

  9. #889
    Join Date
    Apr 2004
    Location
    Montreal
    Posts
    755
    Plugin Contributions
    1

    Default 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
    IntelCos

  10. #890
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    Quote Originally Posted by IntelCos View Post
    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
    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)

 

 
Page 89 of 120 FirstFirst ... 3979878889909199 ... LastLast

Similar Threads

  1. File list for Tabbed Products Lite v3.8?
    By spaz_tic in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 24 Mar 2010, 05:58 PM
  2. PHP Inlcudes with Tabbed Products Lite v3.8
    By rmjr in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Dec 2007, 05:28 PM
  3. tabbed products lite big problem
    By tacotupac in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 27 Jun 2007, 11:25 PM
  4. Tabbed Products LITE - CSS/JS Issue?
    By rknepp79 in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 15 Dec 2006, 08:04 PM
  5. x-sell, tabbed products lite, IH2 question
    By signs in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 30 Oct 2006, 01:43 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR