PDA

View Full Version : Cancel load cke_toolbar by additional.css


xony
04-13-2020, 08:06 PM
Hello, I have modified the additional.css file a bit so that the icons that I don't need in cke_toolbar do not appear, so far so good.

But I want to do the same with the line break that the icons have, I add this to the additional.css, but it doesn't work for me:

I change this code: .cke_skin_kama .cke_break{font-size:0;clear:left;}

for this but it doesn't work .cke_skin_kama .cke_break {font-size: 0; clear: none;}

Thanks.

https://forum.vbulletin.com/filedata/fetch?id=4438414&d=1586815340

https://forum.vbulletin.com/filedata/fetch?id=4438415&d=1586815373

z3r0
04-14-2020, 05:08 PM
Try adding an !important to the clear:none

.cke_skin_kama .cke_break {clear:none !important;}

xony
04-14-2020, 07:42 PM
It works, thanks a lot friend.:up: