page-content class CSS declarations breaking websites
-
You are setting this CSS:
.page-content{display:flex;flex-flow:row nowrap;margin:0 auto;min-height:calc(60vh - 120px);min-width:0;padding:25px 0;position:relative;width:100%} .centered-content{display:flex;flex-flow:column;align-content:center;margin:0 auto;max-width:800px;min-width:276px;width:80vw} .content-title{font-size:24px;font-weight:700;width:100%}
You cannot declare CSS for something so generic like .page-content and .content-title as they are very common on WordPress themes (custom or publicly available) because you’re breaking websites.
I don’t even see a page-content or content-title elements on your HTML, so why are you messing with this?
- The topic ‘page-content class CSS declarations breaking websites’ is closed to new replies.