Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
[Solved] How can I change the properties of the Sign in/Apply box? (css issue)
whu606
MVP
I can't figure out how to do this.
Using Firebug I can see that this is the part I need to effect:
<div id="Panel"> <div class="Box GuestBox"> <h4>Welcome to our Community!</h4> <p>If you want to take part in the discussions, sign in or apply for membership below!</p>
In css I've tried
#Panel .GuestBox
and
.GuestBox
but neither of these seem to have any impact on layout/formatting.
I've tried adding !important, but no go.
I've had success with almost every other part of the Vanilla layout, but this has me stumped.
Can someone tell me where I am going wrong?
Thanks.
Tagged:
0
Answers
Just realised what I had to do:
#Panel .GuestBox p
Cheers.