I've created an HTML site using chordpro.php generator, and the specific aspect related to this query is as follows:
<div class="song">
<table border=0 cellpadding=0 cellspacing=0 class="songline">
<tr class="songlyricchord"><td></td><td> C </td><td> C7 </td></tr>
<tr class="songlyricline"><td>1. </td><td>Moje malé svetielko, chcem, aby svietilo. (</td> <td>hey hey hey)</td></tr></table>
</div>
Below is the stylesheet being used:
( updated stylesheet content goes here )
The goal is to italicize the cell
<td>hey hey hey)</td>
in the HTML example.
I've attempted various methods like using
<td class="italic"></td>
, <i></i>
, <div class="italic"><td></td></div>
, and <td style="font-style: italic !important;>
, but none have provided the desired result. Similar issues were faced with the class="white"
, which was resolved by using !important
. However, using !important
for class="italic"
has not worked in this case.
Update: Here is a link to access HTML, CSS, and all relevant files.