Jump to content

Rank ' tag ' probleme?


#BaxtH

Recommended Posts

image.png.faaa4ef688f9df344d2f641e0755bee3.png

 

want remove this , |UP forme the name rank like ' Developer '  , and name stay with tag ? how pls !

 

/* TAG AFTER */
.specificup:after {
	content: "|UP";
	color: #6495ed!important;
	display: inline-block;
	transition: 0.3s;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

/* RANK DEV */
.specificup {
	color: #964384!important;
	font-weight: bold;
	display: inline-block;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

 

3 minutes ago, #BaxtH said:

image.png.faaa4ef688f9df344d2f641e0755bee3.png

 

want remove this , |UP forme the name rank like ' Developer '  , and name stay with tag ? how pls !

 


/* TAG AFTER */
.specificup:after {
	content: "|UP";
	color: #6495ed!important;
	display: inline-block;
	transition: 0.3s;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

/* RANK DEV */
.specificup {
	color: #964384!important;
	font-weight: bold;
	display: inline-block;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

 

 

This Setting 

 

image.png.78f4b5fa40b5831c76cd56bffae35eda.png

Link to comment
Share on other sites

10 hours ago, #BaxtH said:

image.png.faaa4ef688f9df344d2f641e0755bee3.png

 

want remove this , |UP forme the name rank like ' Developer '  , and name stay with tag ? how pls !

 


/* TAG AFTER */
.specificup:after {
	content: "|UP";
	color: #6495ed!important;
	display: inline-block;
	transition: 0.3s;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

/* RANK DEV */
.specificup {
	color: #964384!important;
	font-weight: bold;
	display: inline-block;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

 

 

This Setting 

 

image.png.78f4b5fa40b5831c76cd56bffae35eda.png

 

 

/* RANK DEV */
.specificup {
	color: #964384!important;
	font-weight: bold;
	display: inline-block;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

 

Edited by STAR
Link to comment
Share on other sites

Remove .specificup:after

  • Support Team - September 9th, 2017 - June 8, 2018
  • Junior Moderator - December 14th 2018 - November 16th, 2019
  • Designer - November 16th, 2019 - June 5th, 2020
  • Moderator - June 5th, 2020 - August 28th, 2020
Link to comment
Share on other sites

1 hour ago, STAR said:

Once you remove code use support tool to clear cache 

 

? -_- i want remove |UP from name rank / and stay in this name user 

Link to comment
Share on other sites

On 5/17/2018 at 7:27 AM, STAR said:

Yes your solution was posted already.

where it bro? link?

On 5/17/2018 at 10:47 AM, Cookie Monster said:

Just remove the hints inside content="" 

That way you keep the after styles but no |up

why no |up , i want this tag in the name but in rank no becs is looks bad 

Link to comment
Share on other sites

1 hour ago, #BaxtH said:

where it bro? link?

why no |up , i want this tag in the name but in rank no becs is looks bad 

Just use the solution with the css thay was provided and add content: "" to the dev rank and your good to go

VAEfvMI.png

Liked what i posted remember to feed me a cookie ->
Or you can add a cookie to myCookieJar

Link to comment
Share on other sites

14 hours ago, Cookie Monster said:

Just use the solution with the css thay was provided and add content: "" to the dev rank and your good to go

not work if i set content: "" in css of the rank , going to remove tag in the rank name & user

Link to comment
Share on other sites

So i would try something like this

/* SCSS STYLES  FOR REFERENCE DONT USE */
.devRank {
	color: #964384 !important;
	font-weight: 700;
	display: inline-block;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

.specificup {
	&:after {
		content: "|UP";
	}
	color: #6495ed !important;
	display: inline-block;
	transition: 0.3s;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}


/* CSS */

.devRank {
  color: #964384 !important;
  font-weight: 700;
  display: inline-block;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

.specificup {
  color: #6495ed !important;
  display: inline-block;
  transition: 0.3s;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}
.specificup:after {
  content: "|UP";
}

devRank should give you the color bold font and some text shadow.

Same thing with specifcup, this will also add |UP after the name.

Add devRank to the developer rank you want to use and specifcup to the other one.

Again i just gave the sass as i'm more used to write it IPS does not support this so please use the CSS output

VAEfvMI.png

Liked what i posted remember to feed me a cookie ->
Or you can add a cookie to myCookieJar

Link to comment
Share on other sites

8 hours ago, Cookie Monster said:

So i would try something like this


/* SCSS STYLES  FOR REFERENCE DONT USE */
.devRank {
	color: #964384 !important;
	font-weight: 700;
	display: inline-block;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

.specificup {
	&:after {
		content: "|UP";
	}
	color: #6495ed !important;
	display: inline-block;
	transition: 0.3s;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}


/* CSS */

.devRank {
  color: #964384 !important;
  font-weight: 700;
  display: inline-block;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}

.specificup {
  color: #6495ed !important;
  display: inline-block;
  transition: 0.3s;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71);
}
.specificup:after {
  content: "|UP";
}

devRank should give you the color bold font and some text shadow.

Same thing with specifcup, this will also add |UP after the name.

Add devRank to the developer rank you want to use and specifcup to the other one.

Again i just gave the sass as i'm more used to write it IPS does not support this so please use the CSS output

 

steal the rank name have |UP tag :( 

image.thumb.png.cfdd3d9eb6696b3d589c4b74eb819192.png

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...