Results 1 to 10 of 953

Hybrid View

  1. #1
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by kwright View Post
    Hi Anne,

    I gave it a try on a local dev using the FF Web Dev Responsive Design View and it didn't seem to make a difference? I'm using v1.3 of the template.

    Thanks
    What is the link to your site?

    Thanks,

    Anne

  2. #2
    Join Date
    Nov 2004
    Posts
    364
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Quote Originally Posted by picaflor-azul View Post
    What is the link to your site?

    Thanks,

    Anne
    Unfortunately, it's not live as yet...what file(s) parses the layoutType=full. Maybe I've inadvertently changes them...

    Thanks Anne!
    Experience is what you get when you don’t get what you want…

  3. #3
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by kwright View Post
    Unfortunately, it's not live as yet...what file(s) parses the layoutType=full. Maybe I've inadvertently changes them...

    Thanks Anne!
    You can check the files against the DIY template default package.

    Thanks,

    Anne

  4. #4
    Join Date
    Feb 2009
    Location
    Landrum SC
    Posts
    141
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    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

  5. #5
    Join Date
    Apr 2014
    Location
    NJ
    Posts
    59
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Quote Originally Posted by xcergy View Post
    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:
    Code:
    <!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
    Below that line, remove everything until the bottom line:
    Code:
     </body>
    So, the bottom of my file looks as follows:
    Code:
    <!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
    <!-- removed slider code -->
    </body>

  6. #6
    Join Date
    Feb 2009
    Location
    Landrum SC
    Posts
    141
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Thanks for the file name.

    There are several instances of

    Code:
    <!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
    I assume you mean the last set:

    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>
    since it refers to slide out. Correct?

  7. #7
    Join Date
    Feb 2009
    Location
    Landrum SC
    Posts
    141
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Thanks. I deleted the last instance of
    Code:
    <!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
    and it worked.


    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.

  8. #8
    Join Date
    Apr 2014
    Location
    NJ
    Posts
    59
    Plugin Contributions
    0

    Default Re: Winchester Responsive

    Yes, you're right, I meant the last instance of
    Code:
    <!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
    Sorry for the confusion.

    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.
    If you look in includes/templates/winchester_responsive/css/stylesheet.css, and search for:
    Code:
    #tagline {margin:0;color:#171717;font-size:1.45em;text-align:left;text-transform:lowercase;clear:both;}
    I think that if you remove the following piece, it will not display in lowercase:
    Code:
    text-transform:lowercase;

  9. #9
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by xcergy View Post
    Thanks. I deleted the last instance of
    Code:
    <!--(EOF - 2.1) Responsive DIY Template Default for 1.5.x (65)-->
    and it worked.


    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.
    You would need to remove the text-transform:lowercase; in the stylesheet.css file for the tagline.

    Thanks,

    Anne

  10. #10
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Winchester Responsive

    Quote Originally Posted by xcergy View Post
    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
    You can remove the left hand slide out by editing the includes/templates/windhester_responsive/common/tpl_main_page.php at the bottom.



    Thanks,

    Anne

 

 

Similar Threads

  1. v154 Winchester Black Responsive Template
    By picaflor-azul in forum Addon Templates
    Replies: 497
    Last Post: 24 Apr 2023, 09:29 PM
  2. v155 Winchester Black responsive - looking for Social media icon flexible footer fix
    By MattA66 in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 8 Jun 2021, 05:34 PM
  3. v155 Responsive Classic vs Responsive Sheffield Blue vs ?
    By Zean in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 13 May 2016, 07:01 AM
  4. v154 Where do I find the images for sliders, using Winchester Responsive Black
    By zbdude in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Apr 2016, 12:00 AM
  5. v153 Winchester Responsive - Trouble resizing carousel size?
    By hols.club in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 26 Nov 2014, 05:09 PM

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