Archived topic
Strange problem with element styling
4 replies · Started by Arp on February 15, 2022
I've set up 2 block element sidebars - one for logged in, one for logged out.
In the logged out sidebar, there is a single block with text and some styling. The styling is fine on every single page except one. The styling is done in the block itself, and not with CSS. So I'm not sure why it's different on a single page.
Links in the private info field. If you click around the site, you'll see that the styling in the sidebar is consistent everywhere except at /press.
Hoping you can help my figure out the issue!
I just noticed a second issue - in the nav search, .icon-search:before is displaying as a little box, and then there's the magnifying glass icon next to it. I'm only seeing this in the logged out site.
Hi there,
try clearing the browser caches as its looking the same to me:
https://www.screencast.com/t/Du8pxcoP
search icon issue - holler box is adding this CSS:
.icon-search::before {
content: '\e800';
}
To counter that you need to add:
.gp-icon.icon-search::before {
content: '';
}
Thank you!
You're welcome