I have a div tag mystery that I am having quite a time to figure out. It is regarding putting div tags side on any page. Since upgrading to DW 2014, this issue has started to occur. Each page I do I keep the CSS on that page rather than a separate CSS file. I would insert div, give it a name at the insertion point, and select box and give it space to fit the page. I would repeat this process for the other div next to it. Worked fine till the upgrade. Here are some screen shots in order as to what I am doing.. hopefully someone can point out what I am missing within what was a very routine process
This is how the tags would appear within the design window on DW CC 2014. Which before now would appear the same live on the page.
But here is now they appear live on the page
Here is the CSS and div tags in the code view
<style type="text/css">
#newsdivleft {
float: left;
width: 860px;
}
#sliderdiv1 {
width: auto;
}
#divtag1 {
float: left;
width: 400px;
}
#divtag2 {
float: left;
width: 400px;
}
</style>
<div id="divtag1">Content for id "divtag1" Goes Here</div>
<div id="divtag2">Content for id "divtag2" Goes Here</div>