Forum replies created
Hello. Evolve Plus is responsive out of the box, so something must be off, like the installation being corrupt, some files not loading, or there being a conflict of some sort. We would have to take a look. Please send a link to your website (it can be in a private reply, if you wish), and maybe we will also have to ask you for access to the admin area and FTP, but first, just a link with an explanation of what’s wrong exactly. Thank you!
Great! I am happy to assist.
It is Quicksand already, so no change needed there. For everything else try this:
figcaption {
font-weight: 600;
font-size: 0.7rem;
}
Add it to Additional CSS and save. It should do it.
We don’t have such a feature yet, although I think it is a very good idea to implement. If you send me a link to your website with examples of captions, you wish to change and an explanation of what it is supposed to look like, I will be happy to offer you the CSS code to add to Additional CSS that will take care of it.
Hello Joseph, sorry for the belated reply. I’m not sure what the process you are attempting is, but every time you try to upload a new design from the Demo Awesome plugin, the new design should override the previous one. Is this what you are doing and not getting the desired results? Or have I misunderstood?
Hello. I’m sorry to hear that. However, the theme is a digital product. We do not offer any refunds on it because this is a commodity you cannot give back. The only reason for a refund is if the theme malfunctions and we can’t fix it or can’t fix it within a reasonable amount of time. This is detailed under our Terms and Conditions. https://theme4press.com/terms-conditions/. It doesn’t apply in this case.
Since this is not a support request, I will delete this entry from the forum later today. If you have any other questions or clarifications, please write to our email at [email protected]
Best
Evgeny
Happy to help! As for the changes – if you feel confident enough to take on these files, maybe it is worth mentioning that it would be safer to tinker with the row and column settings values in Additional CSS instead of the files themselves. I would generally advise against it, but if you do, go for the WordPress solution in the Customizer; it is both safer and future-proof.
Good evening, Klaus. Thank you for sharing the website. Things are clearer now.
1. Unfortunately, we do not have such an option. The header + slider will stay the same widthas the content. To change it would require development, which is out of scope of theme support.
2. Menu font can only be set for the entire menu, not separately for the menu and submenus. The size of the dropdown menu itself also cannot be regulated, as well as the size of the submenu text. However, I can offer you the following pieces of CSS code to bring you closer to your goal. You can add the following to Additional CSS:
/* Set different sizes to the font of the dropdown menu */
.navbar-nav a.dropdown-item {
font-size: 75%;
}
/* Set min width of the dropdown menu */
@media (min-width: 768px) {
.navbar-nav .dropdown-menu {
min-width: 10rem;
}
}
You can use any size you prefer. Let me know if I can help you with anything else.