anonymous 1729731244597

--CARP{"i":{"w":300,"h":200},"d":[[[175,61],[199,43],[204,41],[203,46],[191,73],[178,110],[171,128],[170,132],[169,132]],[[127,63],[105,53],[79,47],[79,47],[81,50],[95,67],[115,87],[138,110],[154,123],[159,125],[159,126]],[[64,151],[64,152],[67,152],[67,149],[67,148],[65,147],[63,148],[62,149],[62,149],[64,150],[64,150],[65,150],[65,150],[65,149],[65,149],[65,149],[65,148],[64,148],[64,149],[64,149],[65,149]],[[140,145],[141,146],[143,147],[144,145],[144,143],[143,143],[141,143],[141,144],[141,145],[141,145],[142,145],[143,144],[143,143],[142,142],[141,142],[141,142],[140,142],[140,143],[140,143]],[[82,150],[91,156],[97,159],[100,159],[104,159],[108,158],[113,155],[116,153],[117,152],[118,151],[119,149],[120,148],[121,146],[121,145],[121,145],[121,144],[121,144]],[[122,173],[120,184],[120,186]],[[145,166],[145,179],[145,183]],[[109,172],[137,168],[170,165]],[[167,166],[155,172],[169,176],[175,172],[176,167],[176,166],[177,166],[180,172],[182,175],[182,176]],[[195,169],[198,176],[199,178]],[[193,144],[197,142]],[[189,171],[202,166],[216,160]]]}

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


Reactions

Comments
Leave a comment

Pressing continue will bring you to the following URL:

Are sure you want to go there?


Continue