JasonWood Posted April 14, 2020 Share Posted April 14, 2020 Site URL: https://www.hunterstreet.org/livestream I have a row of buttons which only needs to appear for a few days each week, so I'm trying to hide the row using CSS. Right now it contains 2 black buttons ("MidWeek PDF" and "Song Lyrics") When I copy the selector for the row, I get this "#yui_3_17_2_1_1586897025412_158 > div:nth-child(3)" I've tried this code to hide it, but something is not quite correct: #yui_3_17_2_1_1586897025412_158>div:nth-child(3) { display:none !Important; } Any ideas of where I've gone wrong? I've been able to hide individual block elements, but the row would be much easier! Thanks! Link to comment
tuanphan Posted April 15, 2020 Share Posted April 15, 2020 Use this div#page-5e6fe2818a838c0e136c65ff .span-12 .row:nth-child(3) { display: none; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
JasonWood Posted April 15, 2020 Author Share Posted April 15, 2020 13 hours ago, tuanphan said: Use this div#page-5e6fe2818a838c0e136c65ff .span-12 .row:nth-child(3) { display: none; } Thanks! I wasn't even close to the right solution. I think I can see what's going on now. I appreciate the help! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.