I have a div and I don't want another div to show IF it held within.
My question is, how do I make
<div class="xp-row xp-first-row">
<div class="social-buttons">
Some Content Here
</div>
</div>
But if the div called "social-buttons" is standalone then it will not be hidden...
I was thinking something like this would work:
.xp-row xp-first-row .social-buttons{
visibility:none
}
But I couldn't get that to work - any ideas?
Thanks for all help