Page 2 of 2 FirstFirst 12
Results 11 to 19 of 19
  1. #11
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Need help with a couple of things

    Quote Originally Posted by Sketchy View Post
    Oh my.. seems like your Home/Log In are white text in Firefox and reside into the white layout, the opposite of how pleasant it looks IE.
    Quote Originally Posted by thedonutlounge View Post
    Thanks for letting me know! I wish all browsers were the same...

    donut, I see you're working on the "Home" "Login" problem. I see you're in the right area. Try this (I was working on it, too):

    #navMain ul, #navSupp ul, ul {
    margin: -1.5em;
    padding: 0em 0.9em;
    list-style-type: inline;
    text-align: center;
    line-height: 1.5em;
    }


    This will actually move those links up int the dark red background are, so anyone with any browser shouldn't have any problems seeing them.
    Oh, yea.......as far as thos links in the boxes......I can change what it says, but changing where those links go to, requires someone with a lot more php experience than me, because I think you've got to change code in several different page to accomplish that. Sorry.

    Hope this helps with the Home and Login link problem, though.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  2. #12
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Need help with a couple of things

    Whoa! What happened there? I just changed a couple of the margin numbers, and it looked good. I guess you found those EXACT lines?
    I'm working with your site on FF with the Developers Tool Kit, and when I edited you CSS, It was perfect. But, I see you had the links in dark red area, but the whole logo moved over to the left.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  3. #13
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Need help with a couple of things

    I see you've got it taken care of. Looks good.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  4. #14
    Join Date
    May 2007
    Posts
    23
    Plugin Contributions
    0

    Default Re: Need help with a couple of things

    Quote Originally Posted by Get Em Fast View Post
    I see you've got it taken care of. Looks good.
    Thanks! Too bad I didn't see your suggestions sooner. I did a lot of rearranging and tinkering to get it looking right in Firefox. I ended up taking the links out of the navmainwrapper tag altogether and then adjusted the CSS for the headerwrapper and it worked.

    And about those links, it's okay. I'm not going to use sideboxes at all.

    I'm pretty much satisfied with all the changes everyone has helped me with. Now I'm just looking for how to customize my Product pages. I don't really like the layout. I'd like to take out the Write Reviews & Tell a Friend buttons and also I'd like to use more than one image for my products... and a larger image. I had it working earlier where the image I uploaded showed up in its full view but I changed something and now it's a thumbnail again.

    Trying to customize zen-cart has been my greatest website challenge but I must say, I'm learning a lot more about php & css.

  5. #15
    Join Date
    Aug 2006
    Location
    Canada
    Posts
    1,029
    Plugin Contributions
    5

    Default Re: Need help with a couple of things

    I'd like to take out the Write Reviews & Tell a Friend buttons
    Disable "Write a Review" and/or "Tell a Friend"

    ~Admin - Catalog - Product Types - Product General(depending on your store set-up, you may have to do the other ones) - Edit Layout:

    "Show Product Tell a Friend button" ~Set to 0(off)

    "Show Product Tell a Friend button" ~Set to 0(off)

    Also, accordingly remove the corresponding sideboxes via the Layout Boxes Controller if you haven't already.

  6. #16
    Join Date
    May 2007
    Posts
    23
    Plugin Contributions
    0

    Default Re: Need help with a couple of things

    Quote Originally Posted by Sketchy View Post
    Disable "Write a Review" and/or "Tell a Friend"

    ~Admin - Catalog - Product Types - Product General(depending on your store set-up, you may have to do the other ones) - Edit Layout:

    "Show Product Tell a Friend button" ~Set to 0(off)

    "Show Product Tell a Friend button" ~Set to 0(off)

    Also, accordingly remove the corresponding sideboxes via the Layout Boxes Controller if you haven't already.
    Thank you. I actually found that one the other day.

    But, I am now having trouble with adding a new page. I followed all the steps, created a tpl_CUSTOM_page, header_php, define_CUSTOM, and CUSTOM pages. The page shows on my site http://www.thedonutlounge.com/zencar...main_page=blog and the define_blog.php page shows in the drop down menu on Define Pages Editor. However, when I edit it nothing shows! I've tried to go through my codes again and again but I can't find anything. Even when I edit define_blog.php using my own editor and not through admin, nothing changes.

    What could be going on?

  7. #17
    Join Date
    Aug 2006
    Location
    Canada
    Posts
    1,029
    Plugin Contributions
    5

    Default Re: Need help with a couple of things

    I've never made pages like that, so I'm not sure.

    I checked the page source from that blog page and compared it with your shop page.

    It seems apparent that nothing is there.. for content.

    I also don't know if this is why, but on your shop page there is div set up for content. Your blog page doesn't have this content div. I don't believe an editor sets this up.

    In short form, the difference comparison is as follows:
    Code:
    <div class="centerColumn" id="blog">
    <h1 id="blogHeading">BLOG</h1>
    
    
    <div class="centerColumn" id="pageThree">
    <h1 id="pageThreeHeading">SHOP</h1>
    
    <div id="pageThreeMainContent" class="content">
    Maybe see if there was a component left out. Other than that, someone else might have a clue what the exact problem is.

  8. #18
    Join Date
    May 2007
    Posts
    23
    Plugin Contributions
    0

    Default Re: Need help with a couple of things

    Quote Originally Posted by Sketchy View Post

    In short form, the difference comparison is as follows:
    Code:
    <div class="centerColumn" id="blog">
    <h1 id="blogHeading">BLOG</h1>
     
     
    <div class="centerColumn" id="pageThree">
    <h1 id="pageThreeHeading">SHOP</h1>
     
    <div id="pageThreeMainContent" class="content">
    Maybe see if there was a component left out. Other than that, someone else might have a clue what the exact problem is.
    Hmm weird, when I go to my tpl_blog_default page my content tag is in there.

    Pretty much everything that was done for the Page_# pages by Zen Cart, I have copied to make a new page. So I'm not sure why my define_blog.php isn't working :[

  9. #19
    Join Date
    Aug 2006
    Location
    Canada
    Posts
    1,029
    Plugin Contributions
    5

    Default Re: Need help with a couple of things

    Oh, that's strange.

    Have you tried it again, starting from a new set of files? Sometimes that helps to smooth out the rough edges. If you want, PM me to maybe send the files, so I could perhaps have a look. Four eyes usually are better than two in some cases. I wouldn't mind learning the ropes as I have no real need to make any of my own or perhaps I could to learn and then send you the files for comparison sake.

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. v151 Help with header/category names and a couple of other teeny things
    By mzunderstood in forum Templates, Stylesheets, Page Layout
    Replies: 20
    Last Post: 14 Nov 2012, 12:23 PM
  2. help with a couple things
    By elscorcho20 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 1 Aug 2008, 12:15 AM
  3. Need help with a couple of things..
    By nekosgrace in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 27 Jul 2008, 08:34 AM
  4. Help with a couple of things
    By Big's Bikini in forum Templates, Stylesheets, Page Layout
    Replies: 13
    Last Post: 20 Jun 2008, 03:12 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