Hi,
could you please provide a test page so I can see what’s wrong ?
Thread Starter
nmr61
(@nmr61)
this is a sample post page:
http://eztech.ir/test-page/
Best regards!
Ok,
I inspected this page and I noticed that this is generated by the “plugins.css” file on your “Multynews” pro theme
look for this CSS key : “[data-tooltip]:after”
Thread Starter
nmr61
(@nmr61)
you are right!
in plugins.css file and in ((( [data-tooltip]::after ))) class, I found a line that by deleting of it, problem will be solved:
content: attr(data-tooltip);
is there any problem by deleting it?
yes there is a problem by making any tweaks on the theme 🙂 :
In the next update of the theme all your changes will be overwritten and restored to the initial state, so the solution in general is to create a child theme of the principle one.
anyway for this special case you can insert another CSS code somewhere on your theme settings (backend) without changing the theme files :
[data-tooltip]:after{
content:"" !important;
}
Thread Starter
nmr61
(@nmr61)
thanks for your great support.