Page 1 of 2 12 LastLast
Results 1 to 10 of 15
  1. #1
    Join Date
    Jul 2007
    Posts
    17
    Plugin Contributions
    0

    Default Can't change the "price" and "Item Name" Link

    I was moving along swiftly changing all the colors on my site with the Firefox plug ins. I managed to change the product listing links, backgrounds and headers. However, I can't figure out how to change the blue links for Price and Item Name. Can anyone help?

    Another problem is when I change the link color in my product listing by adding h3 a:link, a:visited, it also will change the link color in my catergories and mess with ez pages links. Is there a way to have link color for a specific area?

    This is what I did.

    h3 a:link, a:visited, #indexProductList, #indexProductListCatDescription, .productListing-odd, .productListing-rowheading {
    background-color: #000033;

    color: #ffffff;
    a color:#ffffff;
    }

    Thanks!

  2. #2
    Join Date
    Jul 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Can't change the "price" and "Item Name" Link

    I found the solution. I tried to do everything in one step but I just broke it down. This was what I did.

    #indexProductList, #indexProductListCatDescription, .productListing-odd, .productListing-rowheading a, productListing-Data a {
    background-color: #000033;

    color: #ffffff;
    }


    #indexProductList a {color: #ffffff}

  3. #3
    Join Date
    Mar 2008
    Posts
    26
    Plugin Contributions
    0

    Default Re: Can't change the "price" and "Item Name" Link

    Did you find a solution for this? I tried this and my category headings on the Search results page are still displaying in blue:



    Any suggestions???

    Many thanks!

  4. #4
    Join Date
    Mar 2008
    Posts
    17
    Plugin Contributions
    0

    Idea or Suggestion Re: Can't change the "price" and "Item Name" Link

    Here's a CSS snippet for changing the color (or any other attributes-- font, size, etc) of the "Item Name" and "Price" titles on the product list page. Since they're links they change colors unlike the "Product Image" title.

    As a newbie this took me ages to figure out (naturally I was very Zen about it .) There may be a better way to do this but since no one posted one... I hope this saves others some time:

    I'm using the classic template, just change "classic" for your template directory

    1) Open /includes/templates/classic/css/stylesheet.css
    2) Add:

    [FONT="Courier New"]#listCell0-1, #listCell0-2, #listCell0-3, #listCell0-4, .productListing-heading a {
    color: #ffffff;
    font-size: 1em;
    text-align: center;
    }[/FONT]

    3) Save the file.

    Cheers.

  5. #5
    Join Date
    Mar 2008
    Posts
    26
    Plugin Contributions
    0

    Default Re: Can't change the "price" and "Item Name" Link

    Thanks for the info. I tried this and nothing changed.

    Is this for the headings (manufacturer, model, item name) on the search results page?

  6. #6
    Join Date
    Mar 2008
    Posts
    17
    Plugin Contributions
    0

    Default Re: Can't change the "price" and "Item Name" Link

    In my template it's for both the product list and search pages but you may have different setting for each page.

    Here's what I recommend:

    • If you don't already use the Firefox browser, install it.


    • Restart Firefox (if it's already open)

    • Open your page and do a search

    • Click on the Web Developer Button: Information => Display ID & Class Details

    • It should look something like this

    • Look at the "#" and "." fields to the left of the names you want to change, here they are:

    #listCell0-1 .productListing-heading and #listCell0-1 .productListing-heading

    That's what you need to change in your templates/[CUSTOM]/CSS/stylesheet in the following format

    #[#name1], #[#name2], .[.nameheading1] a {
    color: #[hex color];
    font-size: [size number];
    }


    NOTE: It is case sensitive, so you need to type EXACTLY what it says in the Web developer display

    Some this one here is:

    [FONT="Courier New"]#listCell0-1, #listCell0-2, .productListing-heading a {
    color: #ffffff;
    font-size: 1em;
    text-align: center;
    }[/FONT]

    Note that I only needed to put the .productListing-heading once since it was the same for both fields.

    Good Luck!

  7. #7
    Join Date
    Mar 2008
    Posts
    26
    Plugin Contributions
    0

    Default Re: Can't change the "price" and "Item Name" Link

    hi talk2kmf - thanks for the reply and thanks for the web developer tool kit tip - great info and app for firefox!!

    I added the code at the bottom of the css and nothing happened.



    I have got to be missing something somewhere. i know its not that difficult, right?

  8. #8
    Join Date
    Mar 2008
    Posts
    26
    Plugin Contributions
    0

    Default Re: Can't change the "price" and "Item Name" Link

    I am getting so close I think.

    When I edit this:

    #contentMainWrapper a{
    color: blue;
    }

    to color: white

    all the links on my page change from blue to white. This is goos for the headings i want to be white but not good for the rest of the links on my page due to my white background.

    Any way to parse these apart?

  9. #9
    Join Date
    Mar 2008
    Posts
    17
    Plugin Contributions
    0

    Default Re: Can't change the "price" and "Item Name" Link

    I think what's happening is that they're links. So the link attribute is overriding the settings that you're specifying. The trick is to have the specific setting override the link attribute for just those two items. I'm new to this to so I'm trying to figure how this stuff all works too. Here's something to try:

    Open the search page with as before
    Using web developer click on CSS=> View Style information
    Then click on the word "Manufacturer"
    What should show at the bottom is the order of styles (and which file, and which line) that are being read for that item.

    Something like:

    https://<your directory>/css/stylesheet.css

    a:link, #navEZPagesTOC ul li a (line 21)
    {
    color: #006699;
    text-decoration: none;
    }

    a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover
    (line 31)
    {
    color: #ff0000;
    }

    #listCell0-1, #listCell0-2, #listCell0-3, #listCell0-4, .productListing-heading a
    (line 580)
    {
    color: #ffffff;
    font-size: 1em;
    text-align: center;
    }

    First make sure your new setting shows in the list. If not, you're either editing the wrong file or the text is not in the right format so the system isn't reading it.

    If it's there, double check your syntax. For example you need to have the "a" in there after .productListing-heading as in:
    [FONT="Courier New"].productListing-heading a {[/FONT]

    Then I think it needs to be the last entry in the list. So if you have a link attribute below it, that's over riding the special setting. Try changing the order of the entries in the file. And see if it makes a difference.

  10. #10
    Join Date
    Mar 2008
    Posts
    26
    Plugin Contributions
    0

    Default Re: Can't change the "price" and "Item Name" Link

    Hi again - Thanks so very much for your insight with this issue.

    I did as you said and here are my results from the firefox web tool view:

    a:link, #navEZPagesTOC ul li a (line 21)

    {

    color: #ffffff;

    text-decoration: none;

    }

    a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover (line 31)

    {

    color: #ff0000;

    }

    #listCell0-1, #listCell0-2, #listCell0-3, #listCell0-4, .productListing-heading a (line 734)

    {

    color: #ffffff;

    font-size: 1em;

    text-align: center;

    }

    #contentMainWrapper a (line 180)

    {

    color: blue;

    }

    The links on the search results page are still in blue. i imagine that the contentMainWrapper is making them default to blue so when i change that to white, all my other links within the web site are white too. grrr. oh the delimma......

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 3
    Last Post: 15 Feb 2013, 03:17 PM
  2. Shopping cart - trying to turn off "Total Items" "Weight" and "Price"
    By deshojo in forum Templates, Stylesheets, Page Layout
    Replies: 11
    Last Post: 4 Apr 2011, 07:15 PM
  3. How to delete links of "item name" and "price" in category list page?
    By rainmist in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 10 May 2010, 06:26 AM
  4. Remove "Product Image" "Item Name" and "Price"...
    By rebekah in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 22 Sep 2008, 06:08 PM
  5. Replies: 0
    Last Post: 5 Jan 2007, 02:35 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