Page 10 of 13 FirstFirst ... 89101112 ... LastLast
Results 91 to 100 of 121
  1. #91
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by qhome View Post
    This is a strange one. Same thing for me on FF and Opera for your site. I checked the source code and the horizontal line call is definitely there, but its not displaying. I'll try to look if there are any broken tables or blocks, but if you can, try to back out other contribs one by one to see if one of them are causing the problem. Or try the classic template to see if maybe its something with your template.
    When validating his site, he's getting two of these:

    Line 264 column 5: end tag for "tr" which is not finished.

    </tr>

    Most likely, You nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, <head> generally requires a <title>, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.


    Not sure if that's the issue, since I can't seem to find a </tr> in the wrong place. I think its calling out the two instances of <tr></tr> with nothing in them.

    Also, I'm curious why this mod uses both id's and classes on the tables? It also throws validation errors when the id monthlyTableBoxesFeatured occurs more than once.

    Symmo, did you try changing to the classic template to see if the issue continues? It could be something with apple zen, though I'm not sure what. So first lets see if it is template specific.

  2. #92
    Join Date
    Jun 2007
    Posts
    54
    Plugin Contributions
    0

    Default Re: Designer Monthly Boxes

    k I installed on classic and it worked A ok so it must have something to do with apple_zen template?

    got no idea LOL

    help !!!!
    [FONT=Comic Sans MS]www.temp-tattoos.co.uk[/FONT][FONT=Comic Sans MS]
    [/FONT]

  3. #93
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by symmo View Post
    k I installed on classic and it worked A ok so it must have something to do with apple_zen template?

    got no idea LOL

    help !!!!
    Add some padding to .hDotLine:

    Code:
    .hDotLine
    {
        background-image: url(http://www.temp-tattoos.co.uk/shop/includes/templates/apple_zen/images/delim_v.gif);
    padding:.1em;
    }


  4. #94
    Join Date
    Jun 2007
    Posts
    54
    Plugin Contributions
    0

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by jettrue View Post
    Add some padding to .hDotLine:

    Code:
    .hDotLine
    {
        background-image: url(http://www.temp-tattoos.co.uk/shop/includes/templates/apple_zen/images/delim_v.gif);
    padding:.1em;
    }
    you are a genius ......

    ..................worked a treat thanks

    steve
    [FONT=Comic Sans MS]www.temp-tattoos.co.uk[/FONT][FONT=Comic Sans MS]
    [/FONT]

  5. #95
    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.

  6. #96
    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

  7. #97
    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



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

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by qhome View Post
    I'm not sure if DMB is being used for that
    Hi qHome, before congratulation for your DMB! You know if possible add for every product the manufacture's logo?
    Please help me!

    Thank you bye bye.

  9. #99
    Join Date
    Jun 2007
    Posts
    8
    Plugin Contributions
    0

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by Still Crazy View Post
    Hi.

    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;}

    regards.
    In wich file do you have put this string:
    #specialsDefault .vDotLine{display: none;}
    #specialsDefault .hDotLine{display: none;}

    Thanks. Bye.

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

    Default Re: Designer Monthly Boxes

    Quote Originally Posted by cesko78 View Post
    In wich file do you have put this string:
    #specialsDefault .vDotLine{display: none;}
    #specialsDefault .hDotLine{display: none;}

    Thanks. Bye.
    stylesheet.css. Or you could just not upload the stylesheet_dotline.css file if you want to hide it completely.

 

 
Page 10 of 13 FirstFirst ... 89101112 ... 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