I have downloaded a CSS template and am currently in the process of translating it to Arabic with the use of UTF-8 encoding:
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
Everything appears fine when I write in Arabic outside the header, but once inside, only the English text displays while the Arabic text disappears.
<div class="slogan">
<h2> شركة
Company </h2>
</div>
I suspect that the issue may be related to the CSS class, but my expertise lies only in HTML, and I lack knowledge in CSS.
The current CSS class is defined as follows:
.slogan {height:120px; overflow:hidden; text-align:center;}
.slogan h2 {margin:0; font-size:305%; line-height:1.1;}
Is there anything specific I can modify within the CSS file to potentially resolve this issue?