Hello,
You can use the Responsive Classes or Media Queries to change or modify the CSS Properties of the Default CSS Classes. The Responsive Classes are as follows:
.device-xl – Class for Large Devices >=1200px
.device-lg – Class for Medium Devices >=992px to 1199px
.device-md – Class for Tablets
.device-sm – Class for Landscape Mobiles or Phablets.
.device-xs – Class for Portrait Mobiles
- Based on the Above Classes, you can consider suing the following code:
.device-xs #header,
.device-xs #header-wrap {
background-color: #HEX !important;
}
- You can use the following CSS Code to change the Header Color:
@media (min-width: 992px) {
.side-header #header.dark {
background-color: rgba(200, 94, 81, 0.95);
}
}
- Use the following CSS Code to change the Font Family on the Slider Caption:
.swiper-slide .slider-text h3 {
font-family: 'Your Font Name', sans-serif;
}
- Simply remove the .img-grayscale Class from the .grid-item > a Element.
Additionally, we currently do not provide Customization related Support according to the Item Support Policy: https://themeforest.net/page/item_support_policy . You will need to manually code this or Hire a Freelancer to help you out with Design Customizations.
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.