haii :33 wanted 2 ask the following /nf
- changing the feed/questions/navigation bar bg
- outline on profile card/ask box/feed/border screen that flashes
HII!! So to change the background of different elements like the navigation bar or the feed, you have to put: url(image link here) within the customizable boxes under profile -> about me
For the flashing border animation:
body {
border: 5px solid #000000;
padding: 10px;
}
@keyframes pulse {
0% { border-color: #000000; }
50% { border-color: #000000; }
100% { border-color: #00000; }
}
body {
border: 5px solid #000000;
animation: pulse 2s infinite;
padding: 10px;
}
You need to replace the #000000 with different HTML color codes for it to change color. Changing the word "solid" to a different one listed here will change how the outline looks. My profile has the flashing border as "double"
For the outline around all the boxes, it should be:
}
.card {
border: 4px ridge #ffffff
}
Replace "ridge" with a css outline type like double, solid, etc, to change how it looks. Change 4px higher to change the thickness of the outline. Change the #ffffff to another html color code to change the color.
Hope this all helps!! LMK if apart of it doesn't work for you