Blockquote Border Issue with Portage Design System

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
Monu
New Member
New Member
Posts: 1
Joined: Wed Sep 10, 2025 7:12 am

Blockquote Border Issue with Portage Design System

Post by Monu »

I'm using the Portage design system, which references the Foundation Framework for formatting blockquotes
coc mod apk

Code: Select all

margin: 0 0 1rem;
padding: .5625rem 1.25rem 0 1.1875rem;
border-left: 1px solid #cacaca;
I don't want that border, so I tried putting the following at the bottom of my custom Portage stylesheet, which is linked to the Portage Design:

Code: Select all

border-left: none;
When this didn't work, I also tried using a more specific selector and even !important, but the border remains:

Code: Select all

border-left: none;

Code: Select all

border-left: none !important;
Despite multiple cache flushes, nothing has worked. What simple thing am I missing?
User avatar
DIGI3
Dev Team Member
Dev Team Member
Posts: 1809
Joined: Wed Feb 25, 2009 4:25 am

Re: Blockquote Border Issue with Portage Design System

Post by DIGI3 »

I just tested this with Portage and it works correctly:

Code: Select all

blockquote {
  border-left: none;
}
So if it isn't for you, you'll want to use your browser's inspector (F12) to see what's wrong. It's usually something simple like a typo.
Not getting the answer you need? CMSMS support options
Post Reply

Return to “Layout and Design (CSS & HTML)”