AbanteCart Community

eCommerce construction => How-to questions => Topic started by: YoungbloodMat on October 01, 2022, 01:09:55 PM

Title: CSS text Changes
Post by: YoungbloodMat on October 01, 2022, 01:09:55 PM
Hi all,

I've been doing some CSS changes to AbanteCart and pretty much cracked it. However, after changing all the css in the (file path here) I have several things i cannot change.
My colour scheme for the client is black, gold, and white. Black being the back ground, Gold being Borders, and White being text.

However there is part of the css code in the coding that has no link to the webpages (unless there are several css files), named heading4.
as seen here > storedothide-n-chicdotco.uk/index.php?rt=content/content&content_id=4

Page source:
<h1 class="heading1">
  <span class="maintext"><i class="fa fa-list"></i> Shipping</span>
  <span class="subtext"></span>
</h1>

<div class="contentpanel">
   <h4 class="heading4">some description</h4>

   <div class="content">
     <div class="row">
       <div class="col-md-12 pull-left">
            some text about shipping             </div>
     </div>
   </div>


I've tried adding heading4 into the css, but there has been no change.  ???

any thoughts?
Title: Re: CSS text Changes
Post by: Basara on October 03, 2022, 04:20:07 AM
Hello.
This rule should work and do not forget to clean the browser cache after CSS changes
Code: [Select]
h4.heading4 {}
Title: Re: CSS text Changes
Post by: YoungbloodMat on October 04, 2022, 01:03:49 PM
Many Thanks, I'll give it a go tonight. Clearing Browser caching is second nature lol (and turning off CDN)