CSS styles interfering with Bricks Builder forms
-
There appears to be a conflict between Bricks Builder and your plugins form CSS.
The Cookie Admin form CSS is overriding the default Bricks Builder form CSS, breaking the form layouts, as shown in the screenshots below:https://prnt.sc/6ZFfNtdDO0_w
https://prnt.sc/jx7SMq_ft5J_
https://prnt.sc/vZ3GcuPebecP
Specifically this CSS:.form-group {
margin-bottom: 20px;
display: grid;
grid-template-columns: 120px 1fr;
align-items: center;
gap: 16px;
}and
.form-group input, .form-group select, .form-group textarea {
width: 95%;
padding: 8px 12px;
border: 1px solid #8c8f94;
border-radius: 4px;
font-size: 14px;
box-sizing: border-box;
}
Please address this and update your plugin to use prefixes for your CSS selectors, or more specific CSS selectors to prevent conflict like this from occurring. It is not best practice to use CSS selectors that are so broad – hence the conflicts.The page I need help with: [log in to see the link]
The topic ‘CSS styles interfering with Bricks Builder forms’ is closed to new replies.