Jump to content

Recommended Posts

Posted

Hello, sorry for this request, I have been learning how to use css hide some element, but can not do this, anyone can tell me how can I hide the title?

IMG_20210331_133605.thumb.jpg.01a4ab36febbaf45ab322117ccf41d18.jpg1626869632_Snapshot2021-02-2419_53_10.png.d3d193bac20892d0ded633a4d53951cf.png

Posted (edited)

Hi @Nathan Explosion

Thanks for your reply, hope it is not so hesitate...

I can target 2 class .ipsWidget_title and .ipsType_reset, but it is for all widgets, I only want to hide the specific widget...

Edited by kmk
Posted (edited)

You're concentrating on the specific element alone - the 'h3'

Look further above it - it has a 'div' parent, which in turn has an 'li' parent...and that 'li' has something unique about it:

data-blocktitle="YouTube Feed Widget"

So target that element instead, with the added 'h3' below it. So try this...

li[data-blocktitle="YouTube Feed Widget"] h3.ipsWidget_title{
	display:none;
}

 

 

Edited by Nathan Explosion
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...