Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #337705

    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.

    • This topic was modified 9 years, 6 months ago by bgeyzer.
    #337733

    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

    #337837

    Hey!

    Can you post a link to your portfolio page please?

    Cheers!
    Josue

    #337974

    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?

    #338101

    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

    #338334

    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;
    }

    #338396

    Hi!

    Try adding !important:

    .main_color .grid-entry-title {
    background: #3db1e2;
    font-weight: inherit;
    font-size: medium;
    color: white !important;
    }

    Cheers!
    Josue

    #338446

    Josue,

    That did it. its always the little things. I appreciate your assistance. Great support.

    Best Regards

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Portfolio Slider Background and Text Formatting’ is closed to new replies.