Page 8 of 21 FirstFirst ... 67891018 ... LastLast
Results 71 to 80 of 201
  1. #71
    Join Date
    Aug 2008
    Posts
    30
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    I changed stylesheet.css, from within the RI_TEMPLATE_07 template

  2. #72
    Join Date
    Mar 2010
    Posts
    11
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    Quote Originally Posted by Kjohn View Post
    I changed stylesheet.css, from within the RI_TEMPLATE_07 template
    from: ...includes//templates/RI_TEMPLATE_07/css/stylesheet.css I do change this with +5px and is not working (as IE6 user telling me):

    Code:
    /*wrappers - page or section containers*/
    
    /**bof tnmp83**/
    #mainWrapper {
    	background: #FFF;
    	margin: 0 auto;
    	width: 965px;
    }
    #headerWrapper{
    	width: 945px;
    	margin: 0 auto;
    }
    
    
    
    /**eof tnmp83**/
    ... is this correct modif.

    Thank you!
    Last edited by shully; 16 Mar 2010 at 01:08 AM.

  3. #73
    Join Date
    Aug 2008
    Posts
    30
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    This is what I changed in line number 773 in stylesheet.css:

    #contentMainWrapper{
    width: 990px;
    margin: 0 auto;
    padding: 0;
    }

  4. #74
    Join Date
    Mar 2010
    Posts
    11
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    Quote Originally Posted by Kjohn View Post
    This is what I changed in line number 773 in stylesheet.css:

    #contentMainWrapper{
    width: 990px;
    margin: 0 auto;
    padding: 0;
    }
    Thx for quick reply,

    so you have change with +50px at the #contentMainWrapper... aha!
    I was changing the #mainWrapper

    Unfortunately the guy whit the IE6 is no long available, I only can test it tomorrow and let you know.

    Thank you!
    p.s. - IE6

  5. #75
    Join Date
    Mar 2010
    Posts
    11
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    Quote Originally Posted by shully View Post
    Thx for quick reply,

    so you have change with +50px at the #contentMainWrapper... aha!
    I was changing the #mainWrapper

    Unfortunately the guy whit the IE6 is no long available, I only can test it tomorrow and let you know.

    Thank you!
    p.s. - IE6
    I test it with IE NetRenderer and it works
    For making changes available only for IE6 users, I change this: .../includes/templates/RI_TEMPLATE/css/ie6-stylesheet.css

    I did this for not making other changes or loosing anything from original RI07 Template's aspect and let 21'st century IE7,8,9 or FFox users enjoy it's beauty.

    I just copy & paste your advice code and

    Here is my "ie6-stylesheet.css" the code:
    Code:
    #navEZPagesTop li a{
    	position: relative;
    }
    
    #smallNaviHeader ul{
    	padding: 0;
    }
    #smallNaviHeader li{
    	vertical-align: middle;
    }
    
    #contentMainWrapper{
    	width: 990px;
    	margin: 0 auto;
    	padding: 0;
    }
    Thank you!

  6. #76
    Join Date
    Mar 2010
    Posts
    11
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    Quote Originally Posted by jdw1979 View Post
    I have got what I believe is probably a really stupid question. How do I make the banner rotation behavior work? All I've got is the background png...and I don't see an obvious "banners" folder anywhere...

    Like I said, I'm betting this is a stupid question, but I really can't figure it out...

    Thanks in advance, as always
    I have the same question. If you can help us, please!

  7. #77
    Join Date
    Mar 2010
    Posts
    11
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    Quote Originally Posted by Kjohn View Post
    My site is also outside of my shop. I automatically link back to my own home page by redirecting in the tpl_header.php file. Here's how I do that:

    <?php

    $url = (!empty($_SERVER['HTTPS'])) ? "https://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] : "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];

    if($url == 'http://www.my_site.com/store/index.php?main_page=') {
    header( "Location: http://www.my_site.com/" );
    exit(0);
    }
    ?>

    I have a few of these redirects at the top of that file to handle other pages as well that I want to redirect to, just have to play with it.
    I manage to find my own answer for my original ask.
    Kjohn, your ideea is OK bunt what I was asking (again sorry for my English): "how to insert in the header area links to other places, outside the ZenCart shop". The answer was simple, I just open the .../Includes/templates/RI_TEMPLATE_07/common/tpl_header.php

    and add this code:

    ATTENTION!!! After you DO insert those lines, you have to EDIT the: .../Includes/templates/RI_TEMPLATE_07/css/stylesheet.css and resizing and repositioning the old header <div>'s for the new inserted <div> to fit. You DO have to know some css for editing there. PLEASE BACKUP! BACKUP! BACKUP!

    Code:
    <div id="your_css_styling_from_inside_the_stylesheet.css" >
    		<ul>
            	<li><a href="http://www.site_outside_zencart_shop.com">Site_outside_zencart_shop</a></li>
    			<li>|</li>
        		<li><a href="http://www.site_outside_zencart_shop.com/other_page_">Other_Page</a></li>
                <li>|</li>
               </ul>
    	</div>
    This can help you if you have your_shop outside the presentation_main_site... this way you can link your_shop to your out_site_pages from within your shop. Hope this will help you.

    Any help for that banner question? Please!

  8. #78
    Join Date
    Apr 2004
    Location
    Up t'north, UK
    Posts
    305
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    Hi guys

    I am having great fun with this template.

    I want to put a solid header in place rather than continuing the stripes. I added the header image and added the line in CSS to call this up and it looks ok. However how do I close the gap above the EZ page bar and the bottom of the new header background image?

    Screenshoy included so that you stand a chance of understanding my ramblings!

    Any help welcome.

    Rob
    Attached Images Attached Images  
    if elephants could fly, I'd be a little more optimistic....

  9. #79
    Join Date
    Apr 2004
    Location
    Up t'north, UK
    Posts
    305
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    Oh yes and by the way jdw1979, unless I have misunderstood your question (which is not stupid in any way) in post #70, the sliding banner is not included in this free template!

    You can buy it from the template author who is a very nice chap or you can use any propietory slider available on t'internet. I chose to use ALEO Flash Banner Maker.

    Cheers

    Rob
    Last edited by robsnowden; 18 Mar 2010 at 06:27 PM.
    if elephants could fly, I'd be a little more optimistic....

  10. #80
    Join Date
    Jun 2009
    Location
    Australia
    Posts
    20
    Plugin Contributions
    0

    Default Re: Modern Zen [RI07] Template

    Hi,

    On my front page I wish to have the main content area + a few right hand side sideboxes. However when I go into "tools" - "layout box controller" and switch off the LH sideboxes and turn on the RH sideboxes - I just get a blank right hand column.

    Am i missing something or do I need to change some code?

    Any help is appreciated.

    Cheers

 

 
Page 8 of 21 FirstFirst ... 67891018 ... LastLast

Similar Threads

  1. v150 Help with A Modern Zen template
    By dsimon in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 27 Jul 2012, 02:17 AM
  2. Help with a modern zen template
    By dsimon in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 5 May 2012, 07:25 AM
  3. flash flash banner install on Modern Zen [RI07] Template
    By firefly143 in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 18 Mar 2011, 02:25 PM
  4. Modern Zen [RI07] Template
    By firefly143 in forum Addon Templates
    Replies: 7
    Last Post: 7 Oct 2010, 11:59 AM
  5. Help with Modern Zen Template
    By ronmontag in forum Addon Templates
    Replies: 5
    Last Post: 17 Apr 2010, 11:47 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