Where is the edit feature for
Custom Left Slide Out? ( Specials? )
I don't want it, don't need it, and can't find it.
I have turned off/deleted the banner manager stuff that I don't need
Killed ( turned off left side stuff on the Column boxes)
Searched via Developer's tool kit to find it.
I don't need, nor want this slide out menu that I can't find to edit:
www.thedumbdog.com
I removed it as follows:
Find the file: includes/templates/winchester_responsive/common/tpl_main_page.php
Before making any changes, make a backup copy of this file.
Search for this line:
Below that line, remove everything until the bottom line:Code:<!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
So, the bottom of my file looks as follows:Code:</body>
Code:<!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)--> <!-- removed slider code --> </body>
Thanks for the file name.
There are several instances of
I assume you mean the last set:Code:<!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
since it refers to slide out. Correct?Code:<!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)--> <script src="<?php echo $template->get_template_dir('jquery.tabSlideOut.v1.3.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/jquery.tabSlideOut.v1.3.js' ?>" type="text/javascript"></script> <script type="text/javascript"> $(function(){ $('.slide-out-div').tabSlideOut({ tabHandle: '.handle', //class of the element that will become your tab pathToTabImage: '<?php echo $template->get_template_dir('tab.png',DIR_WS_TEMPLATE, $current_page_base,'images') . '/tab.png' ?>', //path to the image for the tab //Optionally can be set using css imageHeight: '50px', //height of tab image //Optionally can be set using css imageWidth: '60px', //width of tab image //Optionally can be set using css tabLocation: 'left', //side of screen where tab lives, top, right, bottom, or left speed: 300, //speed of animation action: 'click', //options: 'click' or 'hover', action to trigger animation topPos: '100px', //position from the top/ use if tabLocation is left or right leftPos: '20px', //position from left/ use if tabLocation is bottom or top fixedPosition: true //options: true makes it stick(fixed position) on scroll }); }); </script> <div class="slide-out-div"> <a class="handle" href="http://link-for-non-js-users.html">Content</a> <?php echo SLIDE_OUT_CONTENT; ?> </div>
Thanks. I deleted the last instance of
and it worked.Code:<!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
Now if I can figure out how to get the website tagline to display in Upper/lower case, I would be happy. right now, it only echos text in lower case only.
Yes, you're right, I meant the last instance of
Sorry for the confusion.Code:<!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
If you look in includes/templates/winchester_responsive/css/stylesheet.css, and search for:Now if I can figure out how to get the website tagline to display in Upper/lower case, I would be happy. right now, it only echos text in lower case only.
I think that if you remove the following piece, it will not display in lowercase:Code:#tagline {margin:0;color:#171717;font-size:1.45em;text-align:left;text-transform:lowercase;clear:both;}
Code:text-transform:lowercase;