Link to home
Start Free TrialLog in
Avatar of WO2015
WO2015

asked on

Word Press Table Alignment in Browsers

Hello,
In all browsers except for IE) my word press site looks how I want it to. The able has words and then a picture. In IE they are not side by side as they should be and actually do appear in other browsers. How can I fix this? Also, how do I hide the faint border lines?  I don't have a border set;  Below is the site and my code.

http://birminghamjaguars.com/2015-teams/10u/   (the team should be next to the picture not below it on all browsers)

<table border="0">
<tbody>
<tr>
<td vertical-align: top;><strong>Coaches:
</strong>Jeff Weber - <a href="mailto:jweb666@me.com">jweb666@me.com</a> / 248-321-0400
Dave Hiemstra - <a href="mailto:daveh@strengthcapital.com">daveh@strengthcapital.com</a> / 248-890-6343
Kevin Voigt - <a href="mailto:kpvoigt@kpmg.com">kpvoigt@kpmg.com</a> / 313-401-2200

<strong>Players:</strong>
# 1 - Lauren Harris
# 2 - Natalie Parent
# 6 - Lola Weber
# 8 - Anastacia Wachowiak
# 9 - Catherine Hiemstra
# 10 - Abigail Hannan
# 11 - Gabrielle Hock
# 12 - Katie Slazinski
# 13 - Christina Voigt
# 15 - Reagan Johnson
# 16 - Abby Biggs
# 19 - Emma Weber
# 28 - Jessie Rebock
# 34 - Leah McLain
# 38 - Gabby Gonzales</td>
<td><img class="alignnone size-full wp-image-119" src="http://birminghamjaguars.com/wp-content/uploads/2015/11/softballlove.jpg" alt="softballlove" width="500" height="500" /></td>
</tr>
</tbody>
</table>
ASKER CERTIFIED SOLUTION
Avatar of Loganathan Natarajan
Loganathan Natarajan
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sajayj2009
sajayj2009

Or another way using css3... Flex Box

Reference
Avatar of WO2015

ASKER

Thank you Loganathan Natarajan!  That worked perfect. Word Press and Tables don't see to mix well.
Yes, avoid tables and move with div or p tags, thanks for your points.