First, you need to create a new image, I just did a new one with a different color, but you can use anything(needs to be a .png), then add this to your css:
.portfolioContainer a:hover {
cursor: url(‘URL OF YOUR PNG’) 35 35, auto;
}
Hope that helps!
It happened with me as well… I created another contact page and this new one is working now.
Hi, do it like this to change the color of the main button at the top of the page:
.featured-content .btn:hover {
background-color: #5b0c0c;
}
Hope that helps!
I found how to disable the blog section using:
.section-blog {
display: none;
}
So now I just need the other bit, color issue in the buttons
Tks!