AbanteCart Community

AbanteCart Development => Customization help => Topic started by: Chris Pine on October 03, 2020, 07:52:55 PM

Title: Where Can I Find These CSS
Post by: Chris Pine on October 03, 2020, 07:52:55 PM
I would like to fix the cart button color. As of right now you cannot even see the text.
I would also like to see if there's any login widget that can be used instead of the simple text at the top.
And lastly, where can I find the css color properties for the behind the product thumbs and the footer bar with the testimonials.
My business is about to start operations on November 15th. I have a lot of work to do from getting stock photos of products to doing work in the community for brand awareness. Can anyone please shorten my time by locating the CSS indicated?


Thank you, AbanteCart Community!
Title: Re: Where Can I Find These CSS
Post by: Chris Pine on October 06, 2020, 12:01:02 AM
For the section of currency it uses the following.


Quote
/* ----------- Currency Box Top Left ----------- */
.headerdetails ul.nav.language li.dropdown, .headerstrip ul.nav.language li.dropdown {
   border: 2px solid #000000;
   display: inline-block;
   margin-right: 15px;
   text-transform: uppercase;
   background-color: #000000;
}

/* ------------ Shopping Cart Box Top Left ------------ */
.headerdetails ul.nav.topcart li.dropdown, .headerstrip ul.nav.topcart li.dropdown {
   border: 2px solid #000000;
   display: inline-block;
   margin-right: 15px;
   text-transform: uppercase;
   background-color: #000000;
}


I placed the description of the section you're affecting. I'll get others soon. And I can help with any requests if needed. Just make a thread and PM me.
Title: Re: Where Can I Find These CSS
Post by: maxter on October 16, 2020, 08:37:59 AM
Generally, most of CSSs are in this file https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/view/default/stylesheet/style.css

You can use browser inspector to see where the exact CSS is located. 
Title: Re: Where Can I Find These CSS
Post by: Chris Pine on October 20, 2020, 01:48:29 PM
Thank you!