Page 217 of 222 FirstFirst ... 117167207215216217218219 ... LastLast
Results 2,161 to 2,170 of 2217
  1. #2161
    Join Date
    Jun 2009
    Posts
    42
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    I'm simply trying to increase the font size of the tab labels. I've found that I believe it's a global size, which I don't want to increase for the entire site. I'm using the default css (alt_tpp_tabs13.css) file. Preferably I'd like to maximize (%) the tabs to fill a single row, increasing the size of the text to match. I noticed right now that it is a set size based on whether I'm on a desktop vs mobile browser (mobile browser puts 2 rows whereas desktop puts 1).
    Thanks

  2. #2162
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    Quote Originally Posted by PeauProductions View Post
    I'm simply trying to increase the font size of the tab labels. I've found that I believe it's a global size, which I don't want to increase for the entire site. I'm using the default css (alt_tpp_tabs13.css) file. Preferably I'd like to maximize (%) the tabs to fill a single row, increasing the size of the text to match. I noticed right now that it is a set size based on whether I'm on a desktop vs mobile browser (mobile browser puts 2 rows whereas desktop puts 1).
    Thanks
    Haven't got a CLUE what it is you are trying to do.. A link to your site might help.. An example of what you want would REALLY help..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #2163
    Join Date
    Jun 2009
    Posts
    42
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    Link to Site: HERE

    The text in the tabs, for example "Product Description", "Specifications", etc is too small. Need to increase the font size.

    I tracked the font size down to a global body page size, which when increased does indeed increase the tab text size, but I don't also want to increase the text globally on the page, I want to do it only for the tabs' text. As I mentioned, I wasn't able to do it in the associated css file (alt_tpp_tabs13.css) for tpp, since changing it didn't do anything. The beginning of the "document_product_info.css" file says @import "tpp/alt_tpp_tabs13.css";. I do see the font size is default at 93%. I like the idea of using a percent and not a defined size value so it scales.

    More information let me know, thanks.

  4. #2164
    Join Date
    Dec 2014
    Location
    SE TX
    Posts
    32
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    add a font-size over 100% in alt_tpp_tabs13.css around line 34

    Code:
    #slidetabsmenu a span {
    float:none;
    font-size:120%;
    }

  5. #2165
    Join Date
    Jun 2009
    Posts
    42
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    Didn't know I could go over 100%. Thanks!

  6. #2166
    Join Date
    Oct 2010
    Location
    United Kingdom
    Posts
    477
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    Does this work with responsive templates as I have been told it doesn't ... I tried on a test site and it does the same thing ,everything is out of position and some tabs don't work like extra images... If this is the case is there a alternative option as I have seen some website with completely different tab styles

  7. #2167
    Join Date
    Dec 2014
    Location
    SE TX
    Posts
    32
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    Quote Originally Posted by Andy-C27 View Post
    Does this work with responsive templates as I have been told it doesn't ... I tried on a test site and it does the same thing ,everything is out of position and some tabs don't work like extra images... If this is the case is there a alternative option as I have seen some website with completely different tab styles
    I'm using it with the default responsive theme and if the screen isn't wide enough then the tabs span more than 1 row, I haven't looked into how to make it look better
    Click image for larger version. 

Name:	tabs.jpg 
Views:	61 
Size:	15.9 KB 
ID:	14983
    Last edited by SignTorch; 15 Feb 2015 at 04:23 PM.

  8. #2168
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    Quote Originally Posted by Andy-C27 View Post
    Does this work with responsive templates as I have been told it doesn't ... I tried on a test site and it does the same thing ,everything is out of position and some tabs don't work like extra images... If this is the case is there a alternative option as I have seen some website with completely different tab styles
    Nope.. and I haven't had time to submit the responsive version of this.. sorry..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #2169
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    I installed this on a few responsive websites in the past couple days and a easy way to make it responsive is to add this to the bottom of the .css file

    I am using the default theme alt_tpp_tabs13.css
    @media (min-width:0px) and (max-width:480px){

    #slidetabsmenu a {
    min-width:100%;
    text-align:center;
    }
    }

    @media (min-width:481px) and (max-width:767px){

    #slidetabsmenu a {
    float:left;
    min-width:49%;
    text-align:center;
    }
    }


    Quote Originally Posted by SignTorch View Post
    I'm using it with the default responsive theme and if the screen isn't wide enough then the tabs span more than 1 row, I haven't looked into how to make it look better
    Click image for larger version. 

Name:	tabs.jpg 
Views:	61 
Size:	15.9 KB 
ID:	14983

  10. #2170
    Join Date
    Dec 2014
    Location
    SE TX
    Posts
    32
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Question RE: 1.1 and CSS JSLoader 3.0.2

    thanks, that's definitely an improvement, and a good example, I'm new to all this responsive stuff...

    Click image for larger version. 

Name:	tabs2.jpg 
Views:	68 
Size:	24.6 KB 
ID:	14985

 

 

Similar Threads

  1. Main Image Replacer (MIR) Contrib - Official Thread
    By qhome in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 5 Aug 2017, 02:47 AM
  2. v154 Tabbed Prod Pro (TPP): Adding Anchor Links
    By Feznizzle in forum All Other Contributions/Addons
    Replies: 10
    Last Post: 30 May 2016, 07:50 PM
  3. v139h Conflicts between Tabbed Home and Tabbed Products Pro v1.07
    By swdynamic in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 14 Sep 2014, 06:29 PM
  4. Column Divider Pro (CDP) Contrib - Official Thread
    By qhome in forum All Other Contributions/Addons
    Replies: 275
    Last Post: 3 Nov 2013, 07:44 AM
  5. Tabbed Products Contrib [WIP]
    By qhome in forum All Other Contributions/Addons
    Replies: 22
    Last Post: 22 Sep 2008, 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