Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2007
    Location
    Atlanta, GA
    Posts
    73
    Plugin Contributions
    0

    Default Help with IE product listing layout

    I am pulling my hair out over this one, and it's probably something simple

    on my product listing pages, in IE only, the item titles are not lined up with the rest of the listings. they are off by either 1 or 3 rows, depending on how i've tried to adjust the code...

    the descriptions are exactly where they're supposed to be, but the titles start up in the category description, rather than above the product descriptions.

    http://tinyurl.com/356oao

    this is a problem page, view fine in mozilla based browsers, is out of alignment in IE... help?

    another problem, may or may not be related... these same item titles turn off completely when using the scrolling news box sidebox. This sidebox has javascript to fade the text in and out, and when it fades out the first time, it fades out the item titles in my listing as well, and while the text in the news box comes back, the item titles don't.

    and last but not least, how do I make a category bold, ONLY while the user is in that category, and then make it back to normal and the new category bold when the user goes to the new category? using "visited" link will just make the link bold for the rest of the time after it's been clicked, which is not what I want. I want the current category highlighted in the category list.

    is that possible?

    thanks...
    ~~give me feedback on my home decor store~~

    ~~sleep is a symptom of caffeine deprivation~~

    ~~COFFEE.SYS Not Found: User startup disabled.~~

    ~~ if(pot.coffee=EMPTY) {programmer->;brain=OFF}; ~~

  2. #2
    Join Date
    Jan 2007
    Location
    Atlanta, GA
    Posts
    73
    Plugin Contributions
    0

    Default Re: Help with IE product listing layout

    Oh, I just remembered.. one more problem... when I'm on the product info page, and I try to click on the image to get the larger image to popup, there is only a tiny clickable area in the middle of the image. how do I make this clickable area the size of the whole image?
    ~~give me feedback on my home decor store~~

    ~~sleep is a symptom of caffeine deprivation~~

    ~~COFFEE.SYS Not Found: User startup disabled.~~

    ~~ if(pot.coffee=EMPTY) {programmer->;brain=OFF}; ~~

  3. #3
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Help with IE product listing layout

    Can't help with IE or JS, but your bold categories is easy.

    The Classic template does what you are asking for, and looking in its stylesheet shows this:
    PHP Code:
    /* categories box parent and child categories */
    A.category-topA.category-top:visited {
        
    color#008000;
        
    text-decorationnone;
        }
    A.category-linksA.category-links:visited {
        
    color#004080;
        
    text-decorationnone;
        }
    A.category-subsA.category-productsA.category-subs:visitedA.category-products:visited {
        
    color#FF0000;
        
    text-decorationnone;
        }
    SPAN.category-subs-parent {
        
    font-weightbold;
        }
    SPAN.category-subs-selected {
        
    font-weightbold;
        }
    /* end categories box links */ 
    Notice the SPAN... selectors which call for bold text.
    I haven't used these, but you might try putting those in your stylesheet and seeing if they work. It is possible that Classic has modified code here too, to apply these as tags, in which case it would be more complicated.
    Post your results so we know if it works.

  4. #4
    Join Date
    Jan 2007
    Location
    Atlanta, GA
    Posts
    73
    Plugin Contributions
    0

    Default Re: Help with IE product listing layout

    perfect! thank you... here is what I used... I made a couple modifications to fit my site...

    Code:
    A.category-top, A.category-top:visited {
        color: #933;
        text-decoration: none;
        }
    A.category-links, A.category-links:visited {
        color: #933;
        text-decoration: none;
        }
    A.category-subs, A.category-products, A.category-subs:visited, A.category-products:visited {
        color: #933;
        text-decoration: none;
        }
    	A.category-subs:hover, A.category-products:hover, A.category-subs:hover, A.category-products:hover {
        color: #333;
        text-decoration: underline;
        }
    	SPAN.category-subs-parent {
        color:#000;
        }
    SPAN.category-subs-selected {
        color:#000;
        }
    I didn't actually use bold, since it made some of my lines wrap.. but I changed a different color than the other two states, so it stands out better...

    Thank you again!
    ~~give me feedback on my home decor store~~

    ~~sleep is a symptom of caffeine deprivation~~

    ~~COFFEE.SYS Not Found: User startup disabled.~~

    ~~ if(pot.coffee=EMPTY) {programmer->;brain=OFF}; ~~

 

 

Similar Threads

  1. Replies: 2
    Last Post: 23 Mar 2012, 03:28 PM
  2. Replies: 5
    Last Post: 17 Feb 2010, 05:13 PM
  3. Problems with Product Listing design/layout. Need help fast!
    By adi2009 in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 19 Dec 2009, 11:06 PM
  4. Help with Product Listing Layout Please
    By dakin in forum Basic Configuration
    Replies: 3
    Last Post: 25 Nov 2008, 08:16 AM
  5. Need help with product listing layout
    By jefrat72 in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 27 Jul 2007, 01:52 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