Fluide grid layout (dreamweaver) to concrete5

Permalink
Hi
Im now learning how to make responsive websites with dreamweaver. I have a question... when I normally convert a static site to C5 I normally only have one css file and convert to main.css. Fluid grid uses 2 css files and javascript. How do I convert all this extra stuff?

johnkidd
 
PineCreativeLabs replied on at Permalink Reply
PineCreativeLabs
You might want to take a look at some example theme packages. I have a handful of FREE responsive themes in the marketplace (see my profile). Feel free to use them as a framework for building your own!

Here is a good one to start with:

http://www.concrete5.org/marketplace/themes/fluid960/...

Hope that helps.
johnkidd replied on at Permalink Reply
johnkidd
Thanks for this!
juddc replied on at Permalink Reply
juddc
Use getThemePath

<link rel="stylesheet" href="<?php echo $this->getThemePath()?>/main.css">
<link rel="stylesheet" href="<?php echo $this->getThemePath()?>/your_other_stylesheet.css">

Same for Javascript:

<script src="<?php echo $this->getThemePath()?>/your_js_file_here.js"></script>
johnkidd replied on at Permalink Reply
johnkidd
much appreciated!