sydneyg Posted July 17 Share Posted July 17 (edited) Hi! In the agenda tab of my website, I am looking to disable the drop downs for specific boxes of my accordion that I've added. Specifically, the boxes labeled Opening Remarks, Coffee Breaks, Lunch, Closing Remarks, and Networking & Cocktails. I've tried the following pieces of code to disable the "lunch" drop down but it is no use.....can someone help me? Thanks! #block-yui_3_17_2_1_1721244417859_461 .accordion-item__dropdown { display: none; } #dropdown-block-d336c4f5471b3b8037bc-6 .accordion-item__dropdown { display: none; } #button-block-d336c4f5471b3b8037bc-6 .accordion-item__dropdown { display: none; } here is my website: http://conch-cow-ztte.squarespace.com Edited July 17 by sydneyg including website Link to comment
sydneyg Posted July 17 Author Share Posted July 17 @tuanphan I saw you helped someone with something very similar a few years ago...i tried to mimic my code based off yours but it doesn't seem to be working...any chance you know what i'm doing wrong? Link to comment
Solution abc Posted July 18 Solution Share Posted July 18 @sydneyg Here you go: /* Opening Remarks */ #block-d336c4f5471b3b8037bc li:nth-child(1) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(1) .accordion-icon-container, /* Coffee Breaks */ #block-d336c4f5471b3b8037bc li:nth-child(4) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(4) .accordion-icon-container, #block-d336c4f5471b3b8037bc li:nth-child(10) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(10) .accordion-icon-container, /* Lunch */ #block-d336c4f5471b3b8037bc li:nth-child(7) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(7) .accordion-icon-container, /* Closing Remarks */ #block-d336c4f5471b3b8037bc li:nth-child(13) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(13) .accordion-icon-container, /* Networking Cocktails */ #block-d336c4f5471b3b8037bc li:nth-child(14) .accordion-item__dropdown, #block-d336c4f5471b3b8037bc li:nth-child(14) .accordion-icon-container { display: none !important; } sydneyg 1 Link to comment
sydneyg Posted July 18 Author Share Posted July 18 thank you so so much!! @abc you saved me! abc 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment