I'm currently working on a website built upon this template: https://github.com/issaafalkattan/React-Landing-Page-Template
My issue arises when trying to remove margins in multiple sections. For instance, I want to eliminate the 'orange' areas of the Gallery section, as indicated by Chrome's developer tools:
https://i.stack.imgur.com/cOvi2.png
In my attempts to troubleshoot, I inserted
* {
margin:0 !important;
padding:0 !important;
}
into both style.css and bootstrap.css in hopes of temporarily eliminating margins for investigation purposes. However, this only resulted in shifting the left margin to the right:
This led me to suspect that React might be overriding my CSS styles; is there a way for me to prevent React from applying margins to specific components? Being new to React, I can't seem to find a solution tailored to my predicament. Your help would be greatly appreciated!
Thank you!