• Resolved jgeche

    (@jgeche)


    Im currently working on a dark colored website, the main search bar and the no results pane I have perfect through css. Although when I search for a product I cant get the product title, description, sku, price, out of stock text ect to go a different color, tried all sorts of css declarations. Please let me know how I can do that as a dark colored search results pane would look alot better. Don’t worry about the background, I was able to get it dark. Let me know. Thanks!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hi,

    Please modify the following styles in order to change colors for elements inside search results drop-down:

    .aws-search-result .aws_result_title {
        color: #21759b;
    }
    
    .aws-search-result .aws_result_sku,
    .aws-search-result .aws_result_stock {
        color: #7ad03a;
    }
    
    .aws-search-result .aws_result_excerpt {
        color: #222;
    }
    
    .aws-search-result .aws_result_price {
        color: #222;
    }
    
    .aws-search-result .aws_onsale {
        background: #77a464 0 0;
        color: #fff;
    }
    Thread Starter jgeche

    (@jgeche)

    it works great! thank you very much. that is all i need for the styling. cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cant get the Main Drop-down search results styled correctly’ is closed to new replies.