KevinBurke,
Not every template can be liquid, but most can be. Post your site design, and if possible your CSS & HTML code.
Cheers,
LHerrou
Main Topics
Browse All TopicsWe have designed a web page in photoshop CS3 and we want the site to be liquid in the sense that if we add more content to the page, the whole page will expand to accommodate this. We tried opening a Dreamweaver liquid template but found it limiting as our page is quite detailed with lot's of slices, and we found it problematic to import all the images/slices into the template as it had far less slices. IS IT POSSIBLE TO ADD THE CSS THAT ALLOWS THE DREAMWEAVER TEMPLATE TO BE LIQUID TO OUR TEMPLATE?
I can send a jpeg of our page design if required.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here's the issue. You are doing this in Tables, and should be using CSS. First of all, CSS separates your content from your style, so in the long run it will make it easier to make tweaks to the style. Second, using CSS won't trap you into cell sizes as much, so you can have a more liquid site without having to do funny hacks. Third, it will be better in the long run for your SEO efforts.
The main fix is to make the parchment tiling downwards behind the menu, so that you don't have to do all those crazy table cells. Then put the menu in a single DIV (or cell, if you just have to stick to tables) and get rid of this craziness: <td colspan="15" rowspan="39">.
A good CSS/HTML programmer can probably do it all, using your template, in a couple of hours.
We originally sliced the photoshop template following an online youtube tutorial. We were unaware that we were working in tables in dreamweaver and thought that we were applying css to our various sliced images. We chose to slice them as according to the tutorial it allows greater freedom once in dreamweaver. Were we wrong to do this? Or should we have used less slices instead?
So far we do not have a preference as to how to work in dreamweaver, all we have is a template created in photoshop, and a large lack of knowledge in dreamweaver.
Going back to the photoshop document, what would you recommend we do to bring it into dreamweaver to make it as easy as possible for us to create a webpage from?
Here's a walkthrough that may be of use or worth a look, it doesn't explain everything for your situation but the gist might be helpful.
http://css-tricks.com/vide
http://css-tricks.com/vide
http://css-tricks.com/vide
Your navigation seems pretty simple and would be adaptable to do with pure CSS and background image
Agree with the above, you shouldn't need any "slices" really, just a jpg of the top part (logo), which you can set as a background, one arrow .gif and then the four "knobs".
Use the two-column fluid layout (with header) and maybe footer too?
Set the jpg to be the back ground of the header in your properties bar. Then use the list item technique above to style your menu on the right hand side. Just place your email box above the list below.
why make one yourself when the code is everywhere - here is a site with a list of menus to choose from CSS and HTML provided
http://www.dynamicdrive.co
follow the tutorials linked above for the knobs... that's a longer explanation.
Slicing is good to give you baseline on how you can position each image object as HTML. But I agree with using CSS instead. What I usually do is identify first elements that you can tile, and you can load them as background using CSS which also helps in reducing download time since the image size is small. Once you have identified the tiled images you can start layouting them in HTML. Do not worry yet about the other objects in your page. Test if they will fill up all the areas in your page as you resize the browser window. You can tile the body - the cream portion and the black portion horizontally as your main background, as well as your header - you can choose the rightmost pixel going down (vertically upto the green portion) as your header background. so when the window width is larger than the header image, it will give you this feathered look at the end of your header image and the dark area fills up the rest of the page.
Then you can start filling up your page with the other images, say menu buttons. You can either insert them using
Business Accounts
Answer for Membership
by: Philip_SparkPosted on 2009-05-06 at 10:56:21ID: 24317661
Please do