Quote:
Originally Posted by davemies
it's not dreamweaver - it's you 
it's the html default for paragraphs - single spaced in apps like word, but 'double spaced' in web apps. using css http://www.w3schools.com/css/default.asp you can alter the default margins for paragraphs like
p {margin-top:0;
margin-bottom: 0;
}
if that's not what you mean then post a url so we can see
|
No thats not what I ment at all - sorry - bad explination.
Its not a big deal but just bugging me.
Say i upload a page for example this:
PHP Code:
echo '<table align="center" width="80%"><tr> <td>'.$result_ref.$a_property->ref.'<br> '.$result_location.$a_property->location.'<br> '.$result_property.$property_type_translation[$a_property->property_type].'<br>
Once I have downloaded it on another pc- then open it in dreamweaver is show like this:
PHP Code:
echo '<table align="center" width="80%"><tr> <td>'.$result_ref.$a_property->ref.'<br> '.$result_location.$a_property->location.'<br> '.$result_property.$property_type_translation[$a_property->property_type].'<br>
So if this is done a lot you can imagine how many empty lines i get between my code - making it longer and harder to follow - so i end up spending loads of time deleating all these silly empty lines that have appeared.
Just wondered if any one else has found this - or how i can stop this or if I can set dreamweaver not to do this madness!
Thanks Rachel
|