Page 106 of 116 FirstFirst ... 65696104105106107108 ... LastLast
Results 1,051 to 1,060 of 1160
  1. #1051
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    The only way I can patch this behavior is by adjusting line 220 in responsive.css to:

    Code:
    .onerow-fluid>.col2{width:16.0156%;}
    Maybe I should not adjust it here, but lack of another solution this gives the wanted result for now. I am aware that it would affect the right boxes, but I want non anyway.
    Live and learn... the Zen way.

  2. #1052
    Join Date
    Jun 2014
    Posts
    157
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by 0ldgeezer View Post
    I just installed this template, it's awesome. While trying to configure some of the features, i have run into a problem with the social media side bar. I can't locate the file to edit. It doesn't exist in my directories ( includes/templates/responsive_sheffield_blue/css/stysheet_social_header.css) the only file in the css directory even close is (stylesheet_social_sidebar.css). What file do I edit to disable the social media display?
    Edit stylesheet_social_sidebar.css and, to disable pinterest e.g., add at the bottom:
    .pinterest-sh{display:none;}
    Good luck!
    jpda

  3. #1053
    Join Date
    Jun 2014
    Posts
    157
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by mydanilo View Post
    The only way I can patch this behavior is by adjusting line 220 in responsive.css to:

    Code:
    .onerow-fluid>.col2{width:16.0156%;}
    Maybe I should not adjust it here, but lack of another solution this gives the wanted result for now. I am aware that it would affect the right boxes, but I want non anyway.
    @Mydanilo: Seems correct to me. calculating the percentages for col1 thru col11, the result of col2's width is the odd one out: 123/768*100 = 16.0156 and not 18.0156 . Typo??
    @Anne: Do you agree?

    Thanks,

    jpda

  4. #1054
    Join Date
    Jun 2014
    Posts
    157
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by mydanilo View Post
    The only way I can patch this behavior is by adjusting line 220 in responsive.css to:

    Code:
    .onerow-fluid>.col2{width:16.0156%;}
    Maybe I should not adjust it here, but lack of another solution this gives the wanted result for now. I am aware that it would affect the right boxes, but I want non anyway.
    @Mydanilo:
    IMHO it would not affect the right boxes.
    I checked your solution after writing my previous post. Reducing the % to 16.0156% appears to be to narrow for the left boxes, 18.0156% might be "on purpose". If right boxes are on, the middle section uses col8 (61.99%) wether boxes actually are present or not.
    But if right boxes are off, the middle section uses col10 (82.6823%). Adding up 18.0156% for col2 resulting in a total of more than 100%. Reducing col10 % to 80.6823% solves the problem.
    Question is: why does the left box not fit in col2 when it's width is set to 16.0156%?
    @Anne: Do you agree with this solution?

    Thanks,

    jpda

  5. #1055
    Join Date
    Jun 2014
    Posts
    157
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by 0ldgeezer View Post
    I just installed this template, it's awesome. While trying to configure some of the features, i have run into a problem with the social media side bar. I can't locate the file to edit. It doesn't exist in my directories ( includes/templates/responsive_sheffield_blue/css/stysheet_social_header.css) the only file in the css directory even close is (stylesheet_social_sidebar.css). What file do I edit to disable the social media display?
    If you do not want the sidebar at all, add .sidebar{display:none !important;} at the bottom of stylesheet_social_sidebar.css

    Thanks,

    jpda

  6. #1056
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    I just found out myself that when using IE11 all need to make sure you are NOT using compatibility view. Turn off compat view and the search header may behave.

  7. #1057
    Join Date
    Apr 2011
    Posts
    39
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Hi,
    I've moved over to giving this template a try and upon trying to load the Sheffield Blue Patch I get this error. I actually get about 20 of these down the page. Any ideas?

    Error ERROR: Cannot execute because table admin_pages does not exist. CHECK PREFIXES!

    I'm running v1.38

  8. #1058
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    I need to have a text area on the main page below the category listing. I have previously pulled some EZ page text done with inserting this code in the tpl_main_page.php:
    PHP Code:
    <!--bof- SEO Ezpage text -->
    <div id="seo_content">
    <?php
    if ($this_is_home_page) {
        
    $page_query $db->Execute("SELECT pages_html_text FROM zen_ezpages WHERE pages_title='SEO'");
        
    $seo_text $page_query->fields['pages_html_text'];
        echo 
    $seo_text;
        } 
    ?>  
    </div>
    <!--eof- SEO Ezpage text -->
    This worked great on the non responsive template I used before. Now with this responsive one it breaks the code. Can anybody tell me why?
    Live and learn... the Zen way.

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by stedman View Post
    Hi,
    I've moved over to giving this template a try and upon trying to load the Sheffield Blue Patch I get this error. I actually get about 20 of these down the page. Any ideas?

    Error ERROR: Cannot execute because table admin_pages does not exist. CHECK PREFIXES!

    I'm running v1.38
    You should be running 1.5.x+ for the responsive templates.

    Thanks,

    Anne

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by mydanilo View Post
    I need to have a text area on the main page below the category listing. I have previously pulled some EZ page text done with inserting this code in the tpl_main_page.php:
    PHP Code:
    <!--bof- SEO Ezpage text -->
    <div id="seo_content">
    <?php
    if ($this_is_home_page) {
        
    $page_query $db->Execute("SELECT pages_html_text FROM zen_ezpages WHERE pages_title='SEO'");
        
    $seo_text $page_query->fields['pages_html_text'];
        echo 
    $seo_text;
        } 
    ?>  
    </div>
    <!--eof- SEO Ezpage text -->
    This worked great on the non responsive template I used before. Now with this responsive one it breaks the code. Can anybody tell me why?
    If you post a link to your site I can take a look. My guess is that you have mismatched or missing tags.

    Thanks,

    Anne

 

 

Similar Threads

  1. v154 Responsive Sheffield Blue v2.0
    By picaflor-azul in forum Addon Templates
    Replies: 1517
    Last Post: 13 Apr 2024, 01:50 AM
  2. 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
  3. v154 Responsive Sheffield Blue change menu links
    By Annie_zaz in forum Addon Templates
    Replies: 3
    Last Post: 7 May 2016, 11:33 PM
  4. v154 Responsive Sheffield Blue v.2.0 Pricing not showing
    By SilverHD in forum Addon Templates
    Replies: 13
    Last Post: 4 Nov 2015, 10:57 PM
  5. v154 Questions re: Responsive Sheffield Blue
    By dfontana in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 14 Aug 2015, 02:43 AM

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