Page 49 of 108 FirstFirst ... 3947484950515999 ... LastLast
Results 481 to 490 of 1072
  1. #481
    Join Date
    Sep 2009
    Posts
    65
    Plugin Contributions
    0

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

    I would like to change the colour of the blue drop down menu on the mobile version of responsive_classic. It's the three horizontal "hamburger" lines. Normally, I'd just use Inspect Element in my computer's web browser to hunt it down, but can't do this in a standard mobile browser. Can someone point me to the css file that controls the colour?

    Thanks

  2. #482
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

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

    Quote Originally Posted by wilorc View Post
    I would like to change the colour of the blue drop down menu on the mobile version of responsive_classic. It's the three horizontal "hamburger" lines. Normally, I'd just use Inspect Element in my computer's web browser to hunt it down, but can't do this in a standard mobile browser. Can someone point me to the css file that controls the colour?

    Thanks
    You'll want to change:
    includes/templates/YOUR_TEMPLATE/common/tpl_header.php
    both occurrences line 46 and 48
    <i class="fa fa-bars"></i>

    You could change it to:
    <i class="fa fa-chevron-left"></i>


    Then change the colour:includes/templates/YOUR_TEMPLATE/css/jquery.mmenu.all.css
    line 1572
    change this:
    .header .fa-bars{font-size:225%;}

    to this:
    .header .fa-chevron-left{
    font-size: 225%;
    margin: .1em;
    color: #941818;
    }

    This will give you independent control of the colour - separate from the menu text/link/hover colours.

    You will have a red looking left pointing chevron :)

    Font Awesome Icons shows a rather large selection to view and test, just be sure to mind the font-size to fit your menu bar.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  3. #483
    Join Date
    Sep 2009
    Posts
    65
    Plugin Contributions
    0

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

    Quote Originally Posted by twitchtoo View Post
    You'll want to change:
    includes/templates/YOUR_TEMPLATE/common/tpl_header.php
    both occurrences line 46 and 48
    <i class="fa fa-bars"></i>

    You could change it to:
    <i class="fa fa-chevron-left"></i>


    Then change the colour:includes/templates/YOUR_TEMPLATE/css/jquery.mmenu.all.css
    line 1572
    change this:
    .header .fa-bars{font-size:225%;}

    to this:
    .header .fa-chevron-left{
    font-size: 225%;
    margin: .1em;
    color: #941818;
    }

    This will give you independent control of the colour - separate from the menu text/link/hover colours.

    You will have a red looking left pointing chevron :)

    Font Awesome Icons shows a rather large selection to view and test, just be sure to mind the font-size to fit your menu bar.
    Thank you so much. That worked perfectly

  4. #484
    Join Date
    Jan 2018
    Posts
    146
    Plugin Contributions
    0

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

    Does anyone have a copy of the 'tpl_header.php' file, i have over written it and need the default coding for it that i could paste in. Would be much appreciated, thanks.

  5. #485
    Join Date
    Sep 2009
    Posts
    65
    Plugin Contributions
    0

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

    Quote Originally Posted by JakeLawless View Post
    Does anyone have a copy of the 'tpl_header.php' file, i have over written it and need the default coding for it that i could paste in. Would be much appreciated, thanks.
    Best thing to do is download and unzip the Zencart 1.5.5f release software, where you'll find it and all the other files, plus will be useful to keep in case needed again.

  6. #486
    Join Date
    Jan 2018
    Posts
    146
    Plugin Contributions
    0

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

    Anyone know how to center the 'logo' at the top of the page i ant figure it out?

    Also on my CCTV Page why at the bottom do my side boxes go to the left side when they're right side on the main page? Thanks

    Site is - http://www.mas-uk.com/cctv-merseyside-1/

  7. #487
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

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

    Quote Originally Posted by JakeLawless View Post
    Anyone know how to center the 'logo' at the top of the page i ant figure it out?

    Also on my CCTV Page why at the bottom do my side boxes go to the left side when they're right side on the main page? Thanks

    Site is - http://www.mas-uk.com/cctv-merseyside-1/
    To my eyes, it looks like the "logo" is centered ... it's just that the image fades in from the left.

    I don't understand the 2nd question. I clicked the CCTV "category link" and don't see any sidebox difference between that and the main page. Perhaps if you posted a screenshot (with a pointer) to illustrate what you see ...

  8. #488
    Join Date
    Sep 2009
    Posts
    65
    Plugin Contributions
    0

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

    Quote Originally Posted by JakeLawless View Post
    Anyone know how to center the 'logo' at the top of the page i ant figure it out?
    Are you asking about how to centre on standard (desktop) display?

  9. #489
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    976
    Plugin Contributions
    6

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

    Quote Originally Posted by JakeLawless View Post
    Anyone know how to center the 'logo' at the top of the page i ant figure it out?

    Also on my CCTV Page why at the bottom do my side boxes go to the left side when they're right side on the main page? Thanks

    Site is - http://www.mas-uk.com/cctv-merseyside-1/
    You may need to prescribe a width for the element concerned before applying margin:auto; in css.

  10. #490
    Join Date
    Sep 2009
    Posts
    65
    Plugin Contributions
    0

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

    Quote Originally Posted by dw08gm View Post
    You may need to prescribe a width for the element concerned before applying margin:auto; in css.
    I centred my logo for desktop display with the following:

    In file includes/templates/YOUR_TEMPLATE/css/stylesheet.css line 128 after the #logo element
    HTML Code:
    .centred {text-align:center;}
    In file includes/templates/YOUR_TEMPLATE/common/tpl_header.php line 167 change
    HTML Code:
    <div id="logo">
    To be
    HTML Code:
    <div id="logo" class="centred">

 

 
Page 49 of 108 FirstFirst ... 3947484950515999 ... 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