Link to home
Start Free TrialLog in
Avatar of romram
romram

asked on

Multi language site...

I am using dreamweaver 3, and I would like to know the easiest way to create a multi-language site, one language is left-to-right language and another one is right-to-left language, so i started with the left-to-right and I want to make the right-to-left as a mirror for it, it is the process of fliping all the contents horizantly, is there any way in dreameaver three that will take less effort.

another thing is that I want toi removethe lines under the text that acts as a link.
Avatar of minichicken
minichicken

To remove line of the links:

<a href="my_page.htm" style="text-decoration:none;>My Page</a>

and not to sure about the language part.....
Forgot the " in the top reply
Here's the correct one....
<a href="my_page.htm" style="text-decoration:none;">My Page</a>
SOLUTION
Avatar of minichicken
minichicken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I believe it would be healthy if you set the content type to contentType="text/html; charset=utf-8"... this would be helpful as utf8 supports a wide range of languages. Once this is done, ideally do NOT set dir attribs to the tags. instead use the css version of that. So, that you can switch the style sheets dynamically when porting to different languages.Also, avoid using dir attrib or its css equalent in td tags inside which you have placed images.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial