Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML code for blank spaces

Status
Not open for further replies.

BWinder

IS-IT--Management
Jul 2, 2010
22
0
0
US
I have a image rotator on our website but I need to move it down. How do I move it down using HTML with just blank space above the rotator?

Thanks in advanced for any help.

Brian
 
you mean line break?

try <br>

Or if you mean a space bar space try &nbsp

----------------------------------
Phil AKA Vacunita
----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.

Behind the Web, Tips and Tricks for Web Development.
 
would that be

<br>

this space would be blank, correct?


</br>
and then to rotator is under this?

I am new to all this, so thanks for the help.
 
Yup that's correct, and this would be an HTML question by the way not Javascript so :

forum215

----------------------------------
Phil AKA Vacunita
----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.

Behind the Web, Tips and Tricks for Web Development.
 
Sorry for posting in the wrong group. Thanks for your help.

BWind
 
Just the <br> you don't need to close it, so:

Code:
<br>
other code here
Would become:

[blank line]

other code here.

----------------------------------
Phil AKA Vacunita
----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.

Behind the Web, Tips and Tricks for Web Development.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top