To remove the white border around the banner image in Cassiopeia, you need to adjust the padding of the div.grid-child.container-below-top element. You can do this by overriding the default CSS styling in your user.css file. Here's how you can achieve it: https://copysheep.com/home-improvement/ ... tal-fence/
/* Override padding for the specific div */
div.grid-child.container-below-top {
padding: 0 !important; /* Set padding to 0px, !important ensures it takes precedence */
}
This code sets the padding of the div.grid-child.container-below-top element to 0, and the !important declaration ensures that this style takes precedence over any other conflicting styles.
/* Override padding for the specific div */
div.grid-child.container-below-top {
padding: 0 !important; /* Set padding to 0px, !important ensures it takes precedence */
}
This code sets the padding of the div.grid-child.container-below-top element to 0, and the !important declaration ensures that this style takes precedence over any other conflicting styles.
Statistics: Posted by robertwolf1 — Fri Aug 02, 2024 1:47 pm