I know it's against the ToS to remove the gift tab when your forum's not ad-free, so I'm not intending to do that. I just want it to look more like the other profile tabs. The way I'm styling the tabs is most obvious in the Summary tab. I'm just putting a darker red box around the content and that fixes all my buttons and inputs and stuff too, so it's very nice. I planned on just copy and pasting all that over to whatever selectors were on the Gift tab, but the Gift tab has no unique selectors it looks like. Is there any way to put my css (.post-content) on that tab as well?
Last Edit: Jul 9, 2015 10:57:21 GMT -8 by Kitten4u
One thing you could do is include the page's route name as a class for the container div in Themes > Layout Templates > User Profile.
<div class="container show-user $[route.name]">
Then you'd be able to use the route name as part of your selector to target that page's container specifically so you don't affect the child elements of the other tabs.
.show-user.show_user_gift .content-box { /* Do the thing! */ }