|

|
I have several questions, I'm hoping someone can answer. 1.) Borders - Around the chat, quests, barns, etc there are some borders I cannot figure out how to change, but I'd like to make them all black. Halp. 2.) Images on home page - They're an eyesore really. The tabs next to the featured horse. How do I change those colors? 3.) Cursor - How do I change the cursor? I just want the crosshairs. I am curious as to the code for this, and where I would put it in the code. I tried the following but it did not work. .module { cursor: crosshair, auto; } Edited at June 14, 2022 05:45 AM by Three Seven Ranch
|
|
|
|

|
I am also looking for an answer for question number 2!
|
|
|
|
 |
In case you still need them: 1. Border-radius: 0px!important; OR Border-radius:none !important; should remove the borders. You can also just add your new borders on top of the existing ones. Let me know if it's still not working, I know I have the code but I may have misunderstood the issue. 2. #Stable img[onmouseover] { filter: }. You have to use brightness, saturation, the color wheel (in degrees), etc to change the color of the images. You can look up CSS filter for a list of commands. For instance, I used #Stable img[onmouseover] { filter: hue-rotate(110deg) sepia(50%) brightness(85%) ; box-shadow: 0px 9px 16px 0px rgba(0,0,0,0.69); } on one of my palettes. It's a lot of back and forth looking to get the right color. 3. I've had issues getting the cursor to change personally. But I see everyone else using cursor: url(insert link here), progress !important; under body.
|
|
|