Hello, if there are 2 web page elements generated by remote javascript and it display each at one line and i want these to display in line one next to other, how to do it? i have already tried with table like this. When i use HTML tester like https://codepen.io/marcysutton/pen/ZYqjPj and paste that code inside and append sample text to each column content, it displays the text in one line, but in reality, on the site it looks like this: My research not worked, maybe searching wrong phrases.
Can you create a codepen in it with just your HTML, javascript and css please? It looks like it's placing the ads into separate table cells but it would be easier to see it working.
Let's try again I can't see where you've tried to place the code in the codepen. The code you quote is: <table> <td> </td><td align="right"><!-- adexpert.cz (125x125px) --> <script type="text/javascript" src="https://s.adexpert.cz/ts?122"></script> <!-- adexpert.cz end --></td><td align="right"><!-- adexpert.cz (125x125px) --> <script type="text/javascript" src="https://s.adexpert.cz/ts?123"></script> <!-- adexpert.cz end --></td> </table> Code (markup): When I paste the code into your codepen and add a border to the table it shows as expected. Is there a reason you didn't use <tr></tr>? Then there's the whole using a table when you should be using divs. If I knew what your site's template was using I could make a recommendation based on its grid system. But then Which seems extraordinary. CSS is how you're going to get your divs to line up properly
I have tr just not mentioned it here. You have commented and spent a lot of space in this thread, but given no exact advice, example! Issue, question remains. Have same issue? try: <div style="overflow:hidden;">element</div><div style="overflow:hidden;">element2</div> or: <div style="display: inline-block;">element</div><div style="display: inline-block;">element2</div> or: style="float: left;"
Could be that something in his css is targeting the table but again why no <tr>? The best way to dianose is to see that page its displayed on. Should be a quick one to fix