Page 1 of 1

Blockquote Border Issue with Portage Design System

Posted: Thu Sep 11, 2025 10:42 am
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?

Re: Blockquote Border Issue with Portage Design System

Posted: Thu Sep 11, 2025 4:55 pm
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.