Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 121

Hybrid View

  1. #1
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by Still Crazy View Post

    Say for example I display Specials on my home page. I would like each individual product box to have a header "Special Offer" for example. Below which I would like to display the product name, picture, short text and price. The objective being to display the products on the home page more like a "Teaser Ad", as you have seen on our competitors site.

    I am sure that zen-cart is more than capable of doing what I want, I am just trying to find out how to do it. I thought that using this mod was the right approach, but after spending all day failing miserably I though it was time to ask! And no, I haven't found anyone in the showcase who has done this.
    It was impossible to make any assumptions or compare with the 'other' site as no URL to your site was provided. So now I understand you are referring to the various individual product boxes in the center column on the other site.

    Qhome knows his mod much more in depth, but as I understand the mod utilizes/extends Zen Cart's existing built in support for New, Featured and Specials Products center boxes. Think of these as group product "category" listing panels displayed in the center column. The mod is not designed for presenting "individual" product boxes, which can be assigned to display in specific locations. I think this is what you are wanting.

    If you desire front page custom product boxes, which will not to change very often (no need for dynamic linkage to shop database), it might be best to custom design your own individual boxes and place in the center column on main page.

    If you're not sure how to do this best way to learn is to "View source" the page on the other site and see how they are doing it. Probably an embedded table with nested tables with some CSS will get you where you need to go.

    However it is difficult to make any intelligent recommends without providing an URL and the version of Zen Cart you have installed.

    Post back if you need info on which template file to edit to include your custom boxes. Probably best to start a new thread, maybe on the "Page Layout Changes" board.

    Woody

  2. #2
    Join Date
    Sep 2006
    Location
    Derby UK
    Posts
    99
    Plugin Contributions
    0

    Default Re: Designer Monthly Boxes

    Thanks Woody.

    I had just about reached the same conclusion. Should be quite simple to make a non-dynamic template, hoped that it could be controlled from the admin, but never mind!

    Mod as it stands is great though, I will continue to use it "as is" elsewhere.

    Crazy

  3. #3
    Join Date
    Sep 2006
    Location
    Derby UK
    Posts
    99
    Plugin Contributions
    0

    Default Re: Designer Monthly Boxes

    Hi, Further to my earlier post [number 49], i have been making a little progress in changing the display of specials in particular - see here: http://www.appliancesfirst.co.uk/index.php

    I have been playing with a random text generator to change the box headings such that they do not all say "Special Offers.." I have the code stored in a function folder and it works independantly, but can't get it to display in the site.

    All I am trying to do is replace Special Offers... with [FONT=verdana]$random_text[$random];[/FONT]

    '<table class="specialsBorder" cellpadding="1" cellspacing="0" border="0" width="100%" >
    <tr><td height="26" bgcolor="#FF0000" ><h2 class="specialsHeading">

    Special Offers...

    </h2></td></tr><tr class="specialsStyle"><td valign="top" align="center">

    Is there any Zen reason why I can't do this, or is it purely down to my lack of php skills :)

    Crazy

    Ah, suddenly it all works out, i now have the headings changing 'though not as i wanted. All headings now read the same, but change together when the page refreshes.

    Back to the drawingboard!
    Last edited by Still Crazy; 8 Apr 2007 at 01:20 PM.

  4. #4
    Join Date
    Dec 2006
    Posts
    189
    Plugin Contributions
    0

    Default Re: Designer Monthly Boxes

    I've installed this module but for some reason it's not working on my Purple Shades template. My background is black could this be the reason I'm not showing the dotted lines?

  5. #5
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by Robbyn7 View Post
    I've installed this module but for some reason it's not working on my Purple Shades template. My background is black could this be the reason I'm not showing the dotted lines?
    I suspect you would need to replace /includes/templates/YOUR_TEMPLATE/images/delim_v.gif
    with an inverted version. (try editing the gif in a graphics editor).

    Woody

  6. #6
    Join Date
    Jun 2007
    Posts
    8
    Plugin Contributions
    0

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by Still Crazy View Post
    Hi, Further to my earlier post [number 49], i have been making a little progress in changing the display of specials in particular - see here: http://www.appliancesfirst.co.uk/index.php
    Hi, how you have change in your site the curved border of centerboxcontents and the written "order today" and that line before the name of product?

    And also in the page of single product how you have put the bottom of next, prev e listing because in my site appaer just the written prev, next and listing (do you have load some image in css files?)

    Thanks. Bye Bye.

  7. #7
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by cesko78 View Post
    Hi, how you have change in your site the curved border of centerboxcontents and the written "order today" and that line before the name of product?

    And also in the page of single product how you have put the bottom of next, prev e listing because in my site appaer just the written prev, next and listing (do you have load some image in css files?)

    Thanks. Bye Bye.
    I'm not sure if DMB is being used for that

  8. #8
    Join Date
    Sep 2006
    Location
    Derby UK
    Posts
    99
    Plugin Contributions
    0

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by cesko78 View Post
    Hi, how you have change in your site the curved border of centerboxcontents and the written "order today" and that line before the name of product?

    And also in the page of single product how you have put the bottom of next, prev e listing because in my site appaer just the written prev, next and listing (do you have load some image in css files?)

    Thanks. Bye Bye.
    Hi.

    DMB is still used for this.

    I used the #specialsDefault class which i think was already present in the code.
    Turned off the horizontal and vertical lines in CSS :

    #specialsDefault .vDotLine{display: none;}
    #specialsDefault .hDotLine{display: none;}

    I also added some more classes for styling purposes etc.

    The curved corners are a bg image

    .specialsContainer{background-image: url(../images/specials_bg.gif);background-repeat: no-repeat; height: 278px;width:206px;}

    Text changes at the top are done by a random text generator, 'though it still doesn't work how i want. I would really like the headings to change so that they don't all say the same thing - so i have some more work to do on that.

    Prev/next buttons are from the downloads section c/w installation instructions.

    regards.
    Crazy



  9. #9
    Join Date
    Mar 2007
    Posts
    10
    Plugin Contributions
    0

    Default Re: Designer Monthly Boxes

    I want to change in my pagina the following thing that does not leave in ingles new I articulate in April but in Abril
    www.asica1.com

  10. #10
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by annadiaz View Post
    I want to change in my pagina the following thing that does not leave in ingles new I articulate in April but in Abril
    www.asica1.com
    That is probably not related to this contrib.

    That's most likely a spelling bug in the default language files for your language. Use the Admin->Tools->Developer Tools to search all files for April and find where it is set in the languages

 

 
Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Designer Monthly Boxes Customization Issue
    By ychousa in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 10 Apr 2008, 05:05 AM
  2. Designer Monthly Boxes css to 3 column layout
    By clane777 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 14 Sep 2007, 01:41 AM
  3. Several Problems: Special & Monthly Boxes
    By helpme in forum Templates, Stylesheets, Page Layout
    Replies: 17
    Last Post: 4 May 2007, 07:38 PM
  4. Chaning Text in Monthly Center Boxes
    By helpme in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 26 Apr 2007, 10:13 PM
  5. Need Designer Help - Footers on Center Boxes
    By bettysue in forum Addon Templates
    Replies: 3
    Last Post: 2 Feb 2007, 01:06 AM

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