I have encountered an issue while using a default theme in Prestashop 1.6 that I need assistance with. My goal is to move the navbar up by 25px. I understand that I should make changes to
#block_top_menu {
padding-top: 25px;
}
in blocktopmenu.scss, which is located in the theme directory rather than the modules directory, indicating it should override the default style. Although I successfully disabled it using the browser Inspector tool, the changes are not permanent.
I attempted modifying the file by adjusting 25px to 0px. However, upon reloading the page, there was no change and the inspector displayed the original code. As a next step, I added !important to the CSS in blocktopmenu.css within the modules category:
#block_top_menu {
padding-top: 0px !important;
}
Hoping to override the scss file, but unfortunately, this did not produce any visible changes. In a last-ditch effort, I deleted the scss file from the server, yet nothing changed, and the Inspector continued to display it.
Feeling puzzled, I am unsure of what to do next. Should I attempt to clear the cache in Prestashop? Any guidance would be greatly appreciated.
EDIT: Upon clearing the cache, there were still no improvements.