Page 43 of 108 FirstFirst ... 3341424344455393 ... LastLast
Results 421 to 430 of 1072
  1. #421
    Join Date
    Oct 2017
    Location
    United Kingdom
    Posts
    2
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Yayyy! Perfect, that fixes the menu beautifully.

    Thanks so much for helping!

  2. #422
    Join Date
    Aug 2010
    Location
    Israel
    Posts
    285
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    responsive_mobile.css line #409
    Change the width from 70% to what you want on the mobile version.
    This was for portrait view.

    If you need to change for landscape view or tablets, search as mentioned at post #416

  3. #423
    Join Date
    Apr 2010
    Posts
    897
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Hi,

    I'm attempting to use fontawesome and/or halflings as symbols for use on pages/buttons.

    Here is a link to my cart (zc155e, template is a clone of Responsive Classic):
    https://002mc.justmedical.biz/Produc...-Test-1-Images

    If you look at my search button to right on my top bar, you might see a search symbol before the word search. I say "might" because I'm pretty sure it's not working correctly for all browsers.

    I'm pretty sure I'm doing it wrong. All I did was edit /includes/languages/english/MY_TEMPLATE/header.php by defining HEADER_SEARCH_BUTTON as:
    ' Search'

    Then, to the stylesheet, I added:
    font-family: FontAwesome;

    After banging my head for a while, I tried skimming through this support thread till my head hurt.

    It occurs to me that I'm probably not alone in wanting to figure this out, so maybe a bunch of folks would benefit from hearing the answers to the questions I have.

    MY QUESTIONS:
    1. Font files now exists in /admin/includes/fonts, so is the cart now loading them automatically? Or do I need to somehow call them to wake them up? And if the fonts exist only in the admin area (I couldn't find them in the public folders), will they still work for the store front?
    2. Can somebody explain what this glyph system is and how to use it?
    3. How can I use a symbol in the text on pages, like in the middle of a product page description or ez page?
    4. How can I use a symbol on a button, like the search button on the top of my page?
    5. How can I use a symbol in a menu? For instance, look at the word HOME to the left of my top bar. How would I replace that with just a symbol?
    6. How can I use a symbol instead of an image on pages like the shopping cart? On my site, if you add something to your cart, you will go to the cart and see an image is used for the refresh button and that little trashcan.
    7. SIDE QUESTION: I'm using ckeditor. Every time I try inserting unicode calls they die. Is there anything I can/should do to fix that?


    Really explanations aren't terribly necessary (though I'd love to understand this glyph system), because a few simple real life examples could easily be modeled.

    Thanks!

  4. #424
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    @Feznizzle, since your template is already pulling in the Font Awesome CSS, why not use the FA interface defined here: http://fontawesome.io/examples/

    You don't need to mess with the font-family or loading that font to your store's file system and it's more intuitive (well, kind of). For example, you could code your HEADER_SEARCH_BUTTON as

    '<i class="fa fa-search" aria-hidden="true"></i>&nbsp;Search'

    to receive the results you're looking for.

  5. #425
    Join Date
    Apr 2010
    Posts
    897
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Thanks for the suggestion.

    I changed this (in includes/languages/english/mc001/header.php):
    define('HEADER_SEARCH_BUTTON','&#xf002; Search');

    To this:
    define('HEADER_SEARCH_BUTTON','<i class="fa fa-search" aria-hidden="true"></i>&nbsp;Search');

    A weird image then appears, instead of the expected change. Did I do something wrong?

  6. #426
    Join Date
    Apr 2010
    Posts
    897
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    I think I found my problem, but I don't know how to fix it.

    This is what I put in the define:
    <i class="fa fa-search" aria-hidden="true"></i>&nbsp;Search

    I loaded the page and check source, finding this:
    <i class=&quot;fa fa-search&quot; aria-hidden=&quot;true&quot;></i>&nbsp;Search "

    Can somebody tell me how to escape those quotes? Or is that not my issue?

  7. #427
    Join Date
    May 2007
    Location
    Italy
    Posts
    438
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    hi I try to insert a background image for index and every page. I am using responsive template on zc 1.5.5e
    I tried to insert this in stylesheet.css
    PHP Code:
    /*bof basic elements*/
    body {margin0;font-familyverdanaarialhelveticasans-serif;font-size62.5%;color#888787;background-image: url(../images/my-image-background.jpg);} 
    obviously I upload image in /images folder.

    Please how can I solve it?

  8. #428
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Quote Originally Posted by Feznizzle View Post
    I think I found my problem, but I don't know how to fix it.

    This is what I put in the define:
    <i class="fa fa-search" aria-hidden="true"></i>&nbsp;Search

    I loaded the page and check source, finding this:
    <i class=&quot;fa fa-search&quot; aria-hidden=&quot;true&quot;></i>&nbsp;Search "

    Can somebody tell me how to escape those quotes? Or is that not my issue?
    What program are you using to edit that language file?

  9. #429
    Join Date
    Apr 2010
    Posts
    897
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Quote Originally Posted by lat9 View Post
    What program are you using to edit that language file?
    Textwrangler

  10. #430
    Join Date
    Apr 2010
    Posts
    897
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Because you asked, I reloaded the file as utf8 and resaved. No dif. Then I did the same thing via cpanel file manager, same thing.

    Also, in a dif staging area, I reverted file sets way back before I started modding. This is basically just zc155e, plus Responsive Classic (not a clone). When I alter the define, same thing occurs:
    https://001mc.justmedical.biz/

 

 
Page 43 of 108 FirstFirst ... 3341424344455393 ... LastLast

Similar Threads

  1. v155 Support Thread - Responsive Color Changes for 155
    By dbltoe in forum Templates, Stylesheets, Page Layout
    Replies: 99
    Last Post: 1 Oct 2021, 12:31 PM
  2. v151 Tableau Responsive Theme - Support Thread
    By numinix in forum Addon Templates
    Replies: 622
    Last Post: 19 Apr 2020, 11:11 PM
  3. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Addon Templates
    Replies: 0
    Last Post: 17 Mar 2016, 12:30 AM
  4. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 PM
  5. Bentley Classic Template Support Thread
    By picaflor-azul in forum Addon Templates
    Replies: 173
    Last Post: 17 Sep 2013, 08:25 PM

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