Page 5 of 13 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 126
  1. #41
    Join Date
    Mar 2005
    Location
    TN
    Posts
    116
    Plugin Contributions
    0

    Default Re: Mystic River Template Support Thread

    LOVE the template, Clyde and so far have managed to figure out how to do all the customizing I needed to do with one exception and the guy failed to post his solution.

    I'm wondering if you have figured out how to center the logo once the "About Us and the Site Map" has been removed from the top.

    I also discovered a bug in the template and it doesn't happen all the time. In IE8 and Firefox/3.0.11 (.NET CLR 3.5.30729), the entire site SLIPS down about half the monitor. Can't reproduce it in Opera or Safari.

    I've uploaded screenshots of both IE8 and Firefox cause it doesn't happen all the time and the one from Opera shows what it shoulld look like all the time as of RIGHT this min. (Still working on the details).

    Site is a test site but have my own VPS so I can put it online. You can see it here: http://www.gblcreations.com/zctest/

    I am working on it to replace some things and upgrade other things on my live site. And I would rather break a test site than a live working site.

    I hope you can help.

    Liz
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	GBLCreations_MysticRivertemplateIE8.jpg 
Views:	188 
Size:	40.9 KB 
ID:	6055   Click image for larger version. 

Name:	GBLCreations_MysticRivertemplateFirefox.jpg 
Views:	179 
Size:	38.7 KB 
ID:	6056   Click image for larger version. 

Name:	GBLCreations_MysticRivertemplateOpera.jpg 
Views:	251 
Size:	42.7 KB 
ID:	6057  


  2. #42
    Join Date
    Mar 2005
    Location
    TN
    Posts
    116
    Plugin Contributions
    0

    Default Re: Mystic River Template Support Thread

    Well, I solved the problem of the centering by just making it a fixed width. Still prefer the other but only if you can solve the issue for me.

    The glitch is still making me nuts cause it happens at the oddest times.

    I have one other query. How do I get the categories or designers on my site to line back up in two columns like I have them on my live site. To see what I mean, go to www.gblcreations.com/store and look at the main page. You will see the list of categories under the Designer Call Banner (yes, I know it's not on my test site but I don't need it on my test site) They are in two columns. On the test site the categories are in one on the left.

    And if you click on the Designers, on my live site, it goes to two columns. Test site, one column, left side.

    My co-owner LOVES this template.

    Liz

  3. #43
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Mystic River Template Support Thread

    Quote Originally Posted by southernlady View Post
    Well, I solved the problem of the centering by just making it a fixed width. Still prefer the other but only if you can solve the issue for me.

    The glitch is still making me nuts cause it happens at the oddest times.

    I have one other query. How do I get the categories or designers on my site to line back up in two columns like I have them on my live site. To see what I mean, go to www.gblcreations.com/store and look at the main page. You will see the list of categories under the Designer Call Banner (yes, I know it's not on my test site but I don't need it on my test site) They are in two columns. On the test site the categories are in one on the left.

    And if you click on the Designers, on my live site, it goes to two columns. Test site, one column, left side.

    My co-owner LOVES this template.

    Liz
    The glitch is because you are using IH2 and you'll need to make sure you have uploaded the following IH2 files/folders to

    includes/templates/mystic/jscript/
    includes/templates/mystic/popup_image_additional

    second issue

    admin -> configuration -> maximum valaues -> Categories To List Per Row (set this to 2)

  4. #44
    Join Date
    Mar 2005
    Location
    TN
    Posts
    116
    Plugin Contributions
    0

    Default Re: Mystic River Template Support Thread

    Thank you for your reply. As frustrating as IH2 can be, not using it is worse. So I'll deal with it and fix the problem. Thanks for finding the glitch.

    I just wish people would post their fixes instead of leaving people hanging.

    If you ever find out how to center the header, would you post it? Liz

  5. #45
    Join Date
    Mar 2005
    Location
    TN
    Posts
    116
    Plugin Contributions
    0

    Default Re: Mystic River Template Support Thread

    Okay, the column was already set to 2. Something is getting in the way. Liz

  6. #46
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Mystic River Template Support Thread

    Quote Originally Posted by southernlady View Post
    Thank you for your reply. As frustrating as IH2 can be, not using it is worse. So I'll deal with it and fix the problem. Thanks for finding the glitch.

    I just wish people would post their fixes instead of leaving people hanging.

    If you ever find out how to center the header, would you post it? Liz

    There are several posts/threads about that jumping issue (most of them in the IH support thread and a few others scattered throught the forum)

    This is what you have in your stylesheet.css

    #logoWrapper{
    margin: 0;
    padding: 0;
    background: url(../images/header_bg.jpg) repeat-x;
    height:420px;
    width:100%;
    }

    Try this notice I've taken out the repeat-x

    #logoWrapper{
    margin: 0 auto;
    padding: 0;
    background: url(../images/header_bg.jpg);
    height:420px;
    width:100%;
    }

  7. #47
    Join Date
    Mar 2005
    Location
    TN
    Posts
    116
    Plugin Contributions
    0

    Default Re: Mystic River Template Support Thread

    Code:
    /*wrappers - page or section containers*/
    #mainWrapper {
    margin:0 auto;
    background:#AD88AD;
    color:#000;
    text-align:left;
    width:920px;
    vertical-align:top;
    }
    
    #headerWrapper{
    margin:0 0 5px;
    padding:0;
    }
    
    #logoWrapper{
    margin: 0 auto;
    padding: 0;
    background: url(../images/header_bg.jpg);
    height:420px;
    width:100%;
    }
    If I go back and replace the 920px with what you had originally of 90%, my logo is off to the left and not to the center. I love the fact that this one was fluid and not fixed but I wanted to center this.

    I KNOW how to center logos, I do it all the danged time on vb themes but zen cart has me buffalo'ed!

    Somewhere I should be able to tell it to align="center" but I can't figure out where. I've even tried float: center and that didn't work.

    Liz

  8. #48
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Mystic River Template Support Thread

    Quote Originally Posted by southernlady View Post
    Code:
    /*wrappers - page or section containers*/
    #mainWrapper {
    margin:0 auto;
    background:#AD88AD;
    color:#000;
    text-align:left;
    width:920px;
    vertical-align:top;
    }
    
    #headerWrapper{
    margin:0 0 5px;
    padding:0;
    }
    
    #logoWrapper{
    margin: 0 auto;
    padding: 0;
    background: url(../images/header_bg.jpg);
    height:420px;
    width:100%;
    }
    If I go back and replace the 920px with what you had originally of 90%, my logo is off to the left and not to the center. I love the fact that this one was fluid and not fixed but I wanted to center this.

    I KNOW how to center logos, I do it all the danged time on vb themes but zen cart has me buffalo'ed!

    Somewhere I should be able to tell it to align="center" but I can't figure out where. I've even tried float: center and that didn't work.

    Liz
    let me do a little work on this. I'll post back later

  9. #49
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Mystic River Template Support Thread

    Quote Originally Posted by clydejones View Post
    let me do a little work on this. I'll post back later
    Try setting the #mainWrapper to 94%

    #mainWrapper {
    margin:0 auto;
    background:#AD88AD;
    color:#000;
    text-align:left;
    width:94%;
    vertical-align:top;
    }

  10. #50
    Join Date
    Mar 2005
    Location
    TN
    Posts
    116
    Plugin Contributions
    0

    Default Re: Mystic River Template Support Thread

    Okay, I did and it's still aligned to the left. http://www.gblcreations.com/zctest/

    Liz

 

 
Page 5 of 13 FirstFirst ... 34567 ... LastLast

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 94
    Last Post: 16 Mar 2024, 04:13 PM
  2. BecaBerry Template [Support Thread]
    By brandonturpin in forum Addon Templates
    Replies: 35
    Last Post: 14 Jun 2015, 09:35 AM
  3. Lavender Template Support Thread
    By kobra in forum Addon Templates
    Replies: 262
    Last Post: 13 May 2015, 01:00 AM
  4. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  5. Just Uploaded Mystic River Template.........
    By BusyBee in forum Basic Configuration
    Replies: 3
    Last Post: 29 Jun 2008, 04:57 PM

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