Shape 5

Joomla Templates => Corpway - Club => : David007 October 01, 2014, 11:27:09 AM



: Font Resizer
: David007 October 01, 2014, 11:27:09 AM
How can I move the font resizer? I can't find this module anywhere. I see the ability to turn it off and on in the template manager, but I am trying to place it at a higher place on my page. Please advise.


: Re: Font Resizer
: mikenicoll October 01, 2014, 07:34:51 PM
Hello,

That would require custom programming. You would have to physically move the Font Resizer Div in the index.php file as it is hard coded into the Template.


: Re: Font Resizer
: David007 October 02, 2014, 10:54:36 AM
Hello, I found the code in the Index.php file (please see below). Is it just a matter of changing the div id= to where the social media buttons are?

<?php if($s5_font_resizer == "yes" || $s5_pos_breadcrumb == "published") { ?>
      <div id="s5_breadcrumb_font_wrap">
      <div id="s5_breadcrumb_font_wrap_inner">
         <?php if($s5_font_resizer == "yes") { ?>
            <div id="fontControls"></div>
         <?php } ?>
         <?php if ($s5_pos_breadcrumb == "published") { ?>
            <div id="s5_breadcrumb_wrap">
               <?php s5_module_call('breadcrumb','notitle'); ?>
            </div>
         <?php } ?>
         <div style="clear:both; height:0px"></div>
      </div>
      </div>
   <?php } ?>


: Re: Font Resizer
: mikenicoll October 03, 2014, 01:29:01 AM
Hello,

You would need to move the coding block to a different area of the index and then use CSS if necessary to reposition as needed.