Thread Starter
AVass
(@avass)
I was able to resolve this issue – the secondary portfolio page was not listed in “All Pages” but was listed in Menus and I was able to delete it.
On my theme(BIRCH)which supports “add on mode” for CSS, I simply go to Appearance and then Edit CSS. Alternatively you can go into the full CSS of the template and add the code. Hope that helps!
I recently had a similar issue and was advised to add
!important into the code.
For example, I wanted to change the font color of the title and could not get a response. I added !important and it worked.
.site-title a {
text-decoration: none;
color: #0033cc !important;
}