I am a novice with HTML. I have added a couple of links to my page and want these on the same line. How do I get this on one line? Here is how it is entered.
<p>
<div style="width: 240px; height: 420px; background-image: url(http://vortex.accuweather.com/adcbin/ne ... 420_bg.jpg" onclick="window.open(this.href);return false;); background-repeat: no-repeat; background-color: #607041;">
<div id="NetweatherContainer" style="text-align: left; height: 405px;">
<script src="http://netweather.accuweather.com/adcbi ... "></script>
</div>
<div style="text-align: center; font-family: arial, helvetica, verdana, sans-serif; font-size: 10px; line-height: 15px; color: #fdea11;"><a style="font-size: 10px; color: #fdea11;" href="http://www.accuweather.com/us/IL/ROUND LAKE/60073/city-weather-forecast.asp?partner=accuweather&traveler=0">Weather Forecast</a> | <a style="color: #fdea11;" href="http://www.accuweather.com/maps-satellite.asp">Weather Maps</a> | <a style="color: #fdea11;" href="http://www.accuweather.com/index-radar. ... 3">Weather Radar</a></div>
</div>
<span style="font-family: arial black,avant garde; font-size: medium;">Avon Complex</span>
<iframe src="http://maps.google.com/maps?hl=en&q=Cou ... tput=embed" width="425" height="350"></iframe><br /><small><a style="color: #0000ff; text-align: left;" href="http://maps.google.com/maps?hl=en&q=Cou ... mbed">View Larger Map</a></small>
Placement of links on page
Re: Placement of links on page
add <br> to create hard breaks, between links (also you need a close P tag </p>)
I can not reproduce your weather map correctly, but for the google map part..try
..........
<p>
<br>
<span style="font-family: arial black,avant garde; font-size: medium;">Avon Complex</span>
<br>
<iframe src="http://maps.google.com/maps?hl=en&q=Cou ... tput=embed" width="425" height="350"></iframe><br /><small><a style="color: #0000ff; text-align: left;" href="http://maps.google.com/maps?hl=en&q=Cou ... mbed">View Larger Map</a></small>
<br>
</p>
I can not reproduce your weather map correctly, but for the google map part..try
..........
<p>
<br>
<span style="font-family: arial black,avant garde; font-size: medium;">Avon Complex</span>
<br>
<iframe src="http://maps.google.com/maps?hl=en&q=Cou ... tput=embed" width="425" height="350"></iframe><br /><small><a style="color: #0000ff; text-align: left;" href="http://maps.google.com/maps?hl=en&q=Cou ... mbed">View Larger Map</a></small>
<br>
</p>
Re: Placement of links on page
I tried what you said, but the map still shows up below the weather image.
Re: Placement of links on page
i am sorry, i thought that is what you wanted to do, have it show below. my bad.
Use the layer function in the editor (rectangle icon on lower left of the tool bar) you can move those around and then insert the variosu blocks of code. Takes some getting used to but should work.
Use the layer function in the editor (rectangle icon on lower left of the tool bar) you can move those around and then insert the variosu blocks of code. Takes some getting used to but should work.