Ok. I am working with the fluid grid system in DW CS6.
in the broiler plate.css file i see the below code which seems to control the styling for the listed html 5 elements.
HTML5 display definitions
===================================================================== ===== */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }
/* ===================================================================== ========
Base
===================================================================== ===== */
/*
why did adobe set the nav id to display as a block element.
this is causing me issues with using the above tags.
My navigation bars name is nav. I attempted to create another css rule with the display set to INLINE for my menu.
The boiler plate code is overwriting my rule. Why? What is the best way to label my divs. I was tring to go HTML 5 but fluid grid already has some rules in place. Can i modify that without problems? what is the best thing to do. Not label my divs with the HTML5 labels?
why are all html5 tags set up to display that way. How are you supposed to have individual control? without breaking the fluid grids factory helper rules?