Hi,
I would like to say thank you for your job. The enfold theme is great, flexible and easy to use. I create a blog for the first time, and you make my experience enjoyable.
I have 2 problems / questions :
I used some modified color section (ID section) on my main page .
I wanted to have 50px height color section. So I put that code in the theme editor
div#partenaire_section {
height: 50px;
min-height: 50px;
}
BUT doing that, when I put text box within color section, I saw that “container” was not ajust. So I added that code in the theme editor
div#partenaire_section .container {
height:50px;
}
div#partenaire_section .container .template-page{
top:-45px;
}
I was all good until I check the navigation on smartphone or just seizing the navigation window… the text go out the color section…I think I made mistake when I modified this color. Can you help me ?
Now second prob’ : I would like to modifie the align of my first image entry (top of the page) when I am on a article page. For example, I want my dragonfly on center. How can I do that please ?
Best regards,
MD
Hey MarinaDsf!
Thank you for using Enfold.
1.) You can decrease the font size on mobile device:
@media only screen and (max-width: 767px) {
#partenaire_section p {
font-size: 13px !important;
}
}
2.) Use this to center align the featured image:
.big-preview.single-big a img {
margin: 0 auto;
}
Cheers!
Ismael
Thank you Ismael !