Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #435716

    Can you please provide me with some quick css to change the highlight color on the portfolio grid from a transparent white to black please? Thanks!

    #435946

    Hey djshortkut!

    Please try the following in Quick CSS:

    .image-overlay{
    background-color:#000 !important;
    }

    Regards,
    Rikard

    #436347
    This reply has been marked as private.
    #437050

    Hi!

    Please add following code to Quick CSS as well

    .image-overlay-inside:before {
      background-color: transparent;
      color: #0a397a;
      border: 3px solid;
    }

    Regards,
    Yigit

    #437105

    Thanks Yigit! That code almost worked. I added an !important rule for the background color to get the transparent portion to work. Now the 3px outline of the icon is in blue though and I want it to be white. How can I fix?

    .image-overlay-inside:before {
      background-color: transparent !important;
      color: white !important;
      border: 3px solid;
    }
    #438682

    Hey!

    Try to replace it with:

    .image-overlay-inside:before {
      background-color: transparent !important;
      color: white !important;
      border: 3px solid white !important;
    }

    Best regards,
    Ismael

    #438808

    Resolved…thank you!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Portfolio Grid Highlight Color’ is closed to new replies.