The Most Active and Friendliest
Affiliate Marketing Community Online!

“Adavice”/  “1Win

Web Page problem

chetan1

New Member
affiliate
Hi, I have a CSS layout that I designed in Dreamweaver, but I don't know what to do with it, you can't view CSS in design mode, is there anyway I can import it into HTML? Or anything to see the design?
Thanks
 
Last edited by a moderator:
All you need to do is to grab the css and place it between <style> and </style> html tags, and it will have the same effect.
 
Yes, like Bagi said, you have to insert <style> tag in your HTML page:

Code:
<style type="text/css" href="{PATH_TO_CSS_FILE}" />

or

Code:
<style type="text/css">
  @import "{PATH_TO_CSS_FILE}";
</style>
 
banners
Back