I’m looking for Quick CSS codes that help customize the enfold theme portfolio sliders only and not the whole page. I want to change the background color, text alignment, and text color where the title and excerpt reside.
I have tried other codes found in the forum but nothing has worked properly yet.
Any help you could provide would be appreciated.
Through some trial and error I was able to change some of the formatting. However I am still having an issue trying to override the theme colors to change the entry title and excerpt text color.
Your help is welcomed. Thank you
Hey!
Can you post a link to your portfolio page please?
Cheers!
Josue
Josue,
I’m currently working in the clients staging area and with the portfolio posts on the home page. Before sharing credentials, Is there a common css to handle this?
Hey!
A screenshot will help. If you want to change the portfolio overview content text, use this:
.main_color .grid-content {
background: red;
}
.main_color .grid-entry-title {
background: blue;
color: orange;
}
.grid-entry-excerpt.entry-content {
color: azure;
}
Best regards,
Ismael
Ismail,
Thank you for your help so far. Below is the quick css I am using. Everything works except the color for the .grid-entry-title. I cannot get the title to change from the theme color.
.main_color .grid-content {
background: #3db1e2;
}
.grid-entry .main_color .avia-arrow {
background: #3db1e2;
}
.main_color .main_color.inner-entry {
text-align: left;
}
.main_color .grid-entry-title {
background: #3db1e2;
font-weight: inherit;
font-size: medium;
color: white;
}
Hi!
Try adding !important:
.main_color .grid-entry-title {
background: #3db1e2;
font-weight: inherit;
font-size: medium;
color: white !important;
}
Cheers!
Josue
Josue,
That did it. its always the little things. I appreciate your assistance. Great support.
Best Regards