#BaxtH 0 Posted May 15, 2018 Share Posted May 15, 2018 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: 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 Link to comment Share on other sites More sharing options...
STAR 12 Posted May 16, 2018 Share Posted May 16, 2018 (edited) 10 hours ago, #BaxtH said: 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 /* RANK DEV */ .specificup { color: #964384!important; font-weight: bold; display: inline-block; text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.71); } Edited May 16, 2018 by STAR Link to comment Share on other sites More sharing options...
Jeffrey 366 Posted May 16, 2018 Share Posted May 16, 2018 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 More sharing options...
#BaxtH 0 Posted May 16, 2018 Author Share Posted May 16, 2018 7 hours ago, Jeffrey said: Remove .specificup:after i know :/ i need un name rank i want remove it buuut inn name user stay Link to comment Share on other sites More sharing options...
STAR 12 Posted May 16, 2018 Share Posted May 16, 2018 2 hours ago, #BaxtH said: i know :/ i need un name rank i want remove it buuut inn name user stay Once you remove code use support tool to clear cache Link to comment Share on other sites More sharing options...
#BaxtH 0 Posted May 16, 2018 Author Share Posted May 16, 2018 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 More sharing options...
STAR 12 Posted May 17, 2018 Share Posted May 17, 2018 9 hours ago, #BaxtH said: ? -_- i want remove |UP from name rank / and stay in this name user Yes your solution was posted already. Link to comment Share on other sites More sharing options...
Cookie Monster 673 Posted May 17, 2018 Share Posted May 17, 2018 Just remove the hints inside content="" That way you keep the after styles but no |up Liked what i posted remember to feed me a cookie ->Or you can add a cookie to my Link to comment Share on other sites More sharing options...
#BaxtH 0 Posted May 24, 2018 Author Share Posted May 24, 2018 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 More sharing options...
Cookie Monster 673 Posted May 24, 2018 Share Posted May 24, 2018 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 Liked what i posted remember to feed me a cookie ->Or you can add a cookie to my Link to comment Share on other sites More sharing options...
#BaxtH 0 Posted May 25, 2018 Author Share Posted May 25, 2018 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 More sharing options...
Cookie Monster 673 Posted May 25, 2018 Share Posted May 25, 2018 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 Liked what i posted remember to feed me a cookie ->Or you can add a cookie to my Link to comment Share on other sites More sharing options...
#BaxtH 0 Posted May 25, 2018 Author Share Posted May 25, 2018 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 Link to comment Share on other sites More sharing options...
Recommended Posts