Jump to content

Featured Replies

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

Right click, select 'Inspect element' and figure out something unique about it that allows you to target it in CSS, then hit it with a display:none

Either that or give people a link to the page to do it for you.

 

 

  • Author

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

And what element on the page is it? Your screenshot is obscured, so kind of shooting in the dark here and don't want to make an assumption.

Edited by Nathan Explosion

  • Author

ipshelp.png

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

  • Author

It work, but it hide title of each video item too, is possible exclude them in the css code?

ips_csshelp.png

@kmk give us a link in order to help you better. 

8 hours ago, kmk said:

It work, but it hide title of each video item too, is possible exclude them in the css code?

ips_csshelp.png

Think it through...you have already answered your own question earlier with the information you provided...see my edit.

Recently Browsing 0

  • No registered users viewing this page.