Vitaly Member Nov 9, 2013 #1 I was wondering, how do I remove the usergroup title off the profile page? Ex. http://gyazo.com/9f13366425de61fb39130859d396521f
I was wondering, how do I remove the usergroup title off the profile page? Ex. http://gyazo.com/9f13366425de61fb39130859d396521f
Sheldon Well-known member Nov 9, 2013 #2 Add in extra.css: Code: .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; } Upvote 0 Downvote
Add in extra.css: Code: .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; }
Vitaly Member Nov 10, 2013 #3 Sheldon said: Add in extra.css: Code: .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; } Click to expand... It didn't remove it, I have another code in there. Here is what I have exactly in there; Code: .xenOverlay #pageLogin { background: rgba(0, 0, 0, 0.75); color: #ffffff; padding: 20px; border: 20px solid rgba(0, 0, 0, 0.25); border-radius: 20px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); } { .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; } And thank you for the support. Upvote 0 Downvote
Sheldon said: Add in extra.css: Code: .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; } Click to expand... It didn't remove it, I have another code in there. Here is what I have exactly in there; Code: .xenOverlay #pageLogin { background: rgba(0, 0, 0, 0.75); color: #ffffff; padding: 20px; border: 20px solid rgba(0, 0, 0, 0.25); border-radius: 20px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); } { .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; } And thank you for the support.
Sheldon Well-known member Nov 10, 2013 #4 Code: .xenOverlay #pageLogin { background: rgba(0, 0, 0, 0.75); color: #ffffff; padding: 20px; border: 20px solid rgba(0, 0, 0, 0.25); border-radius: 20px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); } { <----------------------------- REMOVE THAT .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; } You need to remove something. Upvote 0 Downvote
Code: .xenOverlay #pageLogin { background: rgba(0, 0, 0, 0.75); color: #ffffff; padding: 20px; border: 20px solid rgba(0, 0, 0, 0.25); border-radius: 20px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); } { <----------------------------- REMOVE THAT .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; } You need to remove something.
Vitaly Member Nov 10, 2013 #5 Sheldon said: Code: .xenOverlay #pageLogin { background: rgba(0, 0, 0, 0.75); color: #ffffff; padding: 20px; border: 20px solid rgba(0, 0, 0, 0.25); border-radius: 20px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); } { <----------------------------- REMOVE THAT .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; } You need to remove something. Click to expand... I removed it, and it's still not removing it. Hmm, would I have to remove the #pageLogin Overlay? Upvote 0 Downvote
Sheldon said: Code: .xenOverlay #pageLogin { background: rgba(0, 0, 0, 0.75); color: #ffffff; padding: 20px; border: 20px solid rgba(0, 0, 0, 0.25); border-radius: 20px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); } { <----------------------------- REMOVE THAT .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none; } You need to remove something. Click to expand... I removed it, and it's still not removing it. Hmm, would I have to remove the #pageLogin Overlay?
Sheldon Well-known member Nov 10, 2013 #6 If you PM a link to the userpage, I can give you the code a bit better. That is just going off a default install (which should have worked). You can try applying !important Code: .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none !important; } Upvote 0 Downvote
If you PM a link to the userpage, I can give you the code a bit better. That is just going off a default install (which should have worked). You can try applying !important Code: .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none !important; }
Vitaly Member Nov 10, 2013 #7 Sheldon said: If you PM a link to the userpage, I can give you the code a bit better. That is just going off a default install (which should have worked). You can try applying !important Code: .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none !important; } Click to expand... That did it, the !important Thanks for the support. Upvote 0 Downvote
Sheldon said: If you PM a link to the userpage, I can give you the code a bit better. That is just going off a default install (which should have worked). You can try applying !important Code: .profilePage .mainProfileColumn .secondaryContent .userBanner{ display: none !important; } Click to expand... That did it, the !important Thanks for the support.