- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Hi guys,
I'm trying to change the left border color of the Block Quote element in my HTML/CSS editor. I simply changed the HEX color value but nothing happens. Tried with and without !important!.
I'm using the "Edison - Online Store" theme. Anyone knows how to do this?
Thanks!
Eva
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
It looks like you have an extra exclamation point on the end of your css rule, so it's not being used.
Try changing this:
border-left: 2px solid #fee60e !important !;
to this:
border-left: 2px solid #fee60e !important;

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
It's possible it's being set further down by something else. Is there a block quote on your live site, @NightCat? It's often easier to see what to change by looking there.
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Thanks,
Eva
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
It looks like you have an extra exclamation point on the end of your css rule, so it's not being used.
Try changing this:
border-left: 2px solid #fee60e !important !;
to this:
border-left: 2px solid #fee60e !important;
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page

- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
No problem! Sometimes it just takes a second pair of eyes.