I'm using Gk Infinity template on a site on a local server and I would like to change the background to a different color than the original where do I do this?

Att.,
Rita Gonçalves

Hi Rita,

Could you share some screenshots of where and how you want to change the background?

This message is visible to Moderators only
hidden content

Hi

It will require lots of change, I recommend to use Inspect Element in your web browser : https://blog.hubspot.com/website/how-to-inspect

.nspMain.mod-hover-animation .nspArt:hover {
    background: #06131f;
    color: rgba(255,255,255,0.6);
    z-index: 2;
}

then you can override this background color with:

.nspMain.mod-hover-animation .nspArt:hover {
    background: #06131f !important;
    color: rgba(255,255,255,0.6) !important;
}

Please, just let me know the file name and in which directory it is saved so I can change it. I'm doing it on a local server.

Att.,
Rita Gonçalves

Write a Reply...
You need to Login to view replies.