html5 - External CSS not possible with CMS, need to restructure table with inline CSS -
i'm trying restyle tables, , after finished separate css , html files realized our cms tool goes crazy when try refer external stylesheet. i've looked around , seems people suggest iframes deal issue, i'd prefer not if possible.
what think needs happen go inline style tags, i'm not sure how recreate of stuff inline code. suggestions?
edit: i've updated code below in-line version. know it's messy there aren't other options far. 1 big issue i'm running compatibility ie7 sigh. wish drop support browser, i'm still getting 6% of traffic ie7...
any ideas on how ensure compatibility ie7 @ point?
<table border="1px" bordercolor="#898a8a" style="height:auto ; width:520px; border-collapse:collapse;"> <tr> <th colspan="2" style="font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:25px; background:#000000; padding:3px;zoom:1;"><span style=" color:#fff; float:left; text-align:center; padding-left:54px;zoom:1;">title 1</span><span style=" zoom:1;color:#fff; padding-left:65px;">title 2</span><span><div style=" zoom:1;display:inline-block; border-bottom:15px solid transparent; border-right: 15px solid white; position:relative; left:4px; top:-4px; float:top; float:right;"></div></span></th> </tr> <tr style=" background:#d1d3d4;"> <td style="width:190px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;">content1</td> <td style="width:310px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;">content2</td> </tr> <tr style="background:#ffffff;"> <td style="width:190px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;">content3</td> <td style="width:310px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;">content4</td> </tr> <tr style=" background:#d1d3d4;"> <td style="width:190px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;">content5</td> <td style="width:310px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;">content6</td> </tr> <tr style="background:#ffffff;"> <td style="width:190px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;">content7</td> <td style="width:310px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;">content8</td> </tr> <tr style=" background:#d1d3d4;"> <td style="width:190px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;"><div style="display:inline-table;margin-bottom:-23px;">content9</div><span><div style="border-top:15px solid transparent; border-left:15px solid #898a8a; position:relative;float:left;right:11px;top:14px;"></div></span><span><div style="border-top:15px solid transparent; border-left:15px solid white; position:relative;float:left; right:26px;top:15px;"></div></span> </td> <td style="width:310px; font-family:'trebuchet ms', 'trebuchet ms', arial, helvetica, sans-serif; font-size:12px; font-weight:bold; padding:5px 9px 10px 10px;;"content10</td> </tr>
Comments
Post a Comment