i have a dynamic page which includes mulple templates(files). my issue is while including the template there are CSS files over there in that template and that CSS style reflect the style i have written in the page. i.e in this page i used <td> my desired style should be the one i have written in the page itself but for <td> style is coming from the including file.
how to over come with this issue. please advise
Code:<link rel="stylesheet" href="menu2.css" id="css_menu"><!-- static styles for demo menu #1--> <link rel="stylesheet" href="menu3.css" id="css_menu"><!-- static styles for demo menu #2--> <style type="text/css"> .mymenu { font-weight: bold; font-size:11px; background: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif; color: #0260AA; text-decoration:none; } </style> <table border="1" cellpadding="1" cellspacing="0" class="mymenu" > <tr > <td height="20"><a href="/ME/home">Home</a></td> </tr> </table>



Reply With Quote


Bookmarks