Hi there,
Just trialing Webuilder It seems great.
Can I just ask when I preview my CSS where I have <h1>title</h1> in my HTML in my CSS preview it displays as 'ie Element h1.'
Could you tell me how to get it to display the true page as it would be displayed?
How do I preview CSS correctly?
Moderator: kfury77
Forum rules
Please try to follow these guidelines. This will help to receive faster and more accurate response.
Please try to follow these guidelines. This will help to receive faster and more accurate response.
- Check the Support section of the corresponding product first. Chances are you will find your answer there;
- Do not create new topics for already reported problems. Add your comments to the existing topics instead;
- Create separate topic for each problem request. Do NOT post a number of non-related problem reports in a single topic;
- Give your topic a meaningful title. Titles such as "A question," "Bug report" and "Help!" provide others no clue what your message is about;
- Include the version number of the software you are using;
- This is not an official customer support helpdesk. If you need a prompt and official response, please contact our support team directly instead. It may take a while until you receive a reply in the forum;
Best way of previewing CSS
Hello,
I'd recommend testing your CSS by pasting all the CSS in a style Block within the <HEAD> </HEAD> of your HTML... a but like this...
this way you can preview your CSS changes in realtime without having to save... once you are finished and are happy with the changes you can move the CSS out to a seperate file. I use this method regularly and it works fine.
I'd recommend testing your CSS by pasting all the CSS in a style Block within the <HEAD> </HEAD> of your HTML... a but like this...
Code: Select all
<DOCTYPE>
<html>
<head>
<title></title>
<style>
/*<CDATA>*/
</style>
</head>
<body>
</body>
</html>