1
in general i want to disable a css tag.
for example i have this code in style.css
.itemText:first-letter {font-size: 133%; font-weight: bold;}
so to disable it i add this after the above code
.itemText:first-letter {font-size: 100%; font-weight: normal;}
it works but still i have a break between the first letter and other letters in persian.
in persian all letters must stick to each others without any break.
it likes علی and not علی
maybe im wrong in "disable a css code"
is there any other way?
any help would be appreciated
pay attention that i talk about break and not space.