Hi: Can any one please tell me how to i increase the width and length
in the About Us area. I have to write some more text in the middle
area and for this reason i have to put the bottom bar further down
more.
Thanks.
http://www.southeastneurology.com/testsite/
Neredbojias - 29 Jul 2008 10:36 GMT
> Hi: Can any one please tell me how to i increase the width and length
> in the About Us area. I have to write some more text in the middle
[quoted text clipped - 4 lines]
>
> http://www.southeastneurology.com/testsite/
It would be a waste of time. That website needs to be completely redone and
authored with modern, correct markup. The javascript "rolling pictures" give
me a neurological breakdown, too.

Signature
Neredbojias
http://www.neredbojias.net/
Great sights and sounds
Travis Newbury - 29 Jul 2008 11:23 GMT
On Jul 29, 1:48 am, "colleen1...@gmail.com" <colleen1...@gmail.com>
wrote:
> http://www.southeastneurology.com/testsite/
Wow, I agree with Neredbojias you really need a complete overhaul of
the site. But I am guessing that will not happen. I believe this
code:
<div id="Layer7" style="position:absolute; left:0px; top:654px; width:
106px; height:21px; z-index:6"><img
src="img/greybar.jpg" width="783" height="23"></div>
I would just remove that line completely form the code and lose the
bar. Changing the "top" attribute should move it on the screen.
BUT this is a dumb setup and you really need to hire someone to fix
everything for you.
--
Travis
Flash Crap: http://travisnewbury.blogspot.com
Martin Jay - 29 Jul 2008 14:26 GMT
>Hi: Can any one please tell me how to i increase the width and length
>in the About Us area. I have to write some more text in the middle
[quoted text clipped - 4 lines]
>
>http://www.southeastneurology.com/testsite/
As others have mentioned, technically the page is very nasty.
However, you could try the following the achieve what I think you're
looking for.
Replace this section of your HTML:
<span class="points">"professional
intimacy"</span><span class="font">, and hope that it makes
us the right
choice to serve your care needs.</span><br>
</p>
</div>
<div id="Layer7" style="position:absolute; left:0px; top:654px;
width:106px; height:21px; z-index:6"><img
src="img/greybar.jpg" width="783" height="23"></div>
with this:
<span class="points">"professional
intimacy"</span><span class="font">, and hope that it makes
us the right
choice to serve your care needs.</span><br>
</p>
<div style="position: absolute; left: -225px;">
<img src="img/greybar.jpg" width="783" height="23">
</div>
</div>
<!--
<div id="Layer7" style="position:absolute; left:0px; top:654px;
width:106px; height:21px; z-index:6"><img
src="img/greybar.jpg" width="783" height="23"></div>
-->
I've uploaded an edited example here:
<http://www.spam-free.org.uk/examples/neurology/>.
I realise this is only a test site, however you might want to make the
size of the image test7.jpg considerably smaller. Also, using spaces
in filenames can cause problems.

Signature
Martin Jay