While editing the CSS for a module in PrestaShop, I encountered an issue where the changes I made were not reflecting on my website. To troubleshoot, I deleted the CSS stylesheet to confirm that I was working with the correct CSS file. Surprisingly, all the properties disappeared. I then proceeded to comment out each line of code one by one to identify the problem. After re-uploading the edited stylesheet, the properties appeared as intended.
Website: backlabel.com. Please check the newsletter block in the footer section, specifically the <button>
element where I attempted to remove the position:absolute
property.
CSS Stylesheet:
/* Block newsletter */
#columns #newsletter_block_left .form-group {
margin-bottom: 0;
}
... (CSS stylesheet continues here) ...