The Germany Map Stamp (Below the Slider) is hard-coded in the CSS file. If you want to change or hide it, please follow the steps below:
To change the Map Stamp:
- First, save your image in template’s images folder. e.g.(newthumb.jpg)
- Create the custom.css file in template’s css folder and save the following code in it.
Path: templates/TEMPLATENAME/
Here is the code
.hero-section:before {
background-image: url(../images/newthumb.jpg);
}
To hide the Map Stamp:
1. Save the following code in custom.css file.
Here is the code
.hero-section:before {
display: none;
}