4
I got curious and did some research and found these two links:
http://www.w3.org/International/geo/html-tech/tech-bidi.html#ri20030728.094313871http://www.microsoft.com/globaldev/handson/dev/Mideast.mspxApparently it would be interesting if it could be managed by CSS as it seems it can be done but I haven't got the concept clear as to guide you in what to do.
seems it can be done with this in the css, maybe adding it to the table, td, th or tr class..maybe the whole body?:
direction:rtl; (or ltr or inherit)
unicode-bidi: inherit; (bidi_override, embed, or normal)
If this were possible it would be nice to have a separate CSS that would apply this structure to the themes. So people that need this just need to get the appropiate CSS with this function.
... I guess that's the more hard way.
...the easy way, maybe adding
dir=rtl to all the opening table tags of your theme, just like you have in your theme now, like the example below?
<table dir=rtl cellspacing="0">
<tr id="header">
<td id="headerlogo"><a href="<{$xoops_url}>/"><img src="<{$xoops_imageurl}>logo.gif" width="150" height="80" alt="" />a>td>
<td id="headerbanner"><{$xoops_banner}>td>
tr>
<tr>
<td id="headerbar" colspan="2"> td>
tr>
table>