also i have two panels that are floated next to each other creating more clutter, and I'd like them to appear vertically in edit mode, well what i can do is use a Publishing web control EditModePanel To create an edit mode only script that would make my changes for me.
<PublishingWebControls:EditModePanel runat="server" >
<script type="text/javascript">
document.getElementById("grid").style.display = "none";
document.getElementById("ctp-leftPanel").style.float ="none";
document.getElementById("ctp-leftPanel").style.width ="100%";
document.getElementById("ctp-rightPanel").style.float ="none";
document.getElementById("ctp-rightPanel").style.width ="100%";
</script>
</PublishingWebControls:EditModePanel>