0
Good morning, I’m trying to make a small HTML page with a Google Maps API and an RSS feed. However, I am unable to put my RSS feed on the right side of the API. Can anyone help me?
Here is the example of my page: Here is the code for the RSS Feed:
<div id="widgetmain" style="text-align:left;overflow-y:auto;overflow-x:hidden;width:200px;background-color:#transparent; border:1px solid #333333;">
<div id="rsswidget" style="height:500px;">
<iframe src="http://us1.rssfeedwidget.com/getrss.php?time=1495402870570&x=http%3A%2F%2Ffeeds.feedburner.com%2Fthr%2Freviews%2Fallreviews&w=200&h=500&bc=333333&bw=1&bgc=transparent&m=10&it=true&t=(default)&tc=333333&ts=15&tb=transparent&il=true&lc=000003&ls=14&lb=true&id=false&dc=333333&ds=14&idt=true&dtc=000000&dts=12" border="0" hspace="0" vspace="0" frameborder="no" marginwidth="0" marginheight="0" style="border:0; padding:0; margin:0; width:200px; height:500px;" id="rssOutput">Reading RSS Feed ...
</iframe>
</div>
<div style="text-align:right;margin-bottom:0;border-top:1px solid #333333;" id="widgetbottom">
<span style="font-size:70%"><a href="http://www.rssfeedwidget.com">RSS feed</a> </span>
<br>
</div>
</div>
In the meantime, I’ve settled the question. If someone has the same question as me, here is the solution: In the feed div includes float: right ; In the map style, includes display:inline-block;
– LuísA
or you can create a position Absolute left for rss and a position Absolute right for map
– flourigh