Jump to content

zeidhaddadin

Members
  • Posts

    86
  • Joined

  • Last visited

zeidhaddadin's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hi all,I'm wondering how can i do two types of Hover for links in one page..I want to give 1 link a special hover effect and the others another effects.This is for all in page:a:link, a:active, a:visited {color : #FFFFFF;}a:hover {color : #000000;}
  2. ohhh ok i was validating the source code, thank you,zeid
  3. OR read these:http://www.webmasterworld.com/forum83/5777.htmhttp://www.ahfb2000.com/webmaster_help_des...read.php?t=4368
  4. I usually use margins to set the position of tables inside the page .. But i don't know if there was something to make the table in the center.You can use this:table {margin-top = whatever px;}
  5. Hi all,I have an ASP.NET application which is a combination of vb code and normal xhtml lines, I need to validate this page as XHTML Strict .. I tried but ofcourse I got many erros because of the vb and .net lines .. is there anyway to do this..I tried using <!-- --> the comments but it didn't let the page run the vb code.Thanks very much,zeid
  6. all have one column only ... but both the first and last block have 2 rows ... but they are all the same
  7. what do u mean one column!?
  8. It includes asp.net code:<p class="p2"><br /></p><table cellpadding="0" cellspacing="0" border="0"><tr><td class="td1"> </td></tr><tr><td class="td2"> </td></tr></table><form runat="server"><asp:Repeater id="Table" runat="server"><HeaderTemplate><table cellpadding="0" cellspacing="0" border="0"></HeaderTemplate><ItemTemplate><tr><td class="td2"><p><a href="<%#Container.DataItem("url")%>"><%#Container.DataItem("url")%></a></p><p><%#Container.DataItem("desc").Replace(search,"<b>" & search & "</b>")%></p></td></tr></ItemTemplate><FooterTemplate></table></FooterTemplate></asp:Repeater></form><table cellpadding="0" cellspacing="0" border="0"><tr><td class="td2"> </td></tr><tr><td class="td1"> </td></tr></table><p class="p1">© 2007, <a href="INDEX.aspx">HOME PAGE</a> - Powered by <a href="http://www.ze1d.com/">ze1d</a></p></body>
  9. Hi all, I'm using this css:<code>p {font-family : verdana;font-size : 12px;margin : 1em 0;}.p1 {font-size : 11px;text-align : center;}.p2 {text-align : center;}table {width : 100%;}.td1 {height : 25px;background-color : #F6F6F6;margin : 1em 0;}.td2 {width : 550px;height : 20px;text-align : justify;margin : 1em 0;}a:link, a:active, a:visited {color : #0000FF;}a:hover {color : #567CBA;}</code>There is an attribute "table" which have a width 100%And In .td2 I have width : 550px;(So in other td's classes the width is 100% (by default) but with td2 its only 550px ..)This is working fine in IE but with firefox it's ignoring the 550px and showing it as 100%...Is there anyway to fix this,Thanks very much,zeid
  10. Nevermind fixed it by just doing a paragraph and (without aliging it.. default)
  11. Hi all,How can I do something like: Putting a link on the top of the page ---> also align it to the most left of the page .. something like "LOGOUT" or "LOGIN" where usually is placed at that position (Top, most left, most right something like this)..I don't want to use tables or things, I want to use css to put there, BUT it should look the same with EI and FireFox.Thanks very much,zeid
  12. Thank you very very much, That worked with me fine
  13. Hi all,I'm using the following table and form with Strict XHTML DTD: <table cellpadding="0" cellspacing="1" border="0"><tr><td class="td1"><p class="p2"><a href="INDEX.aspx">HOME</a></p></td><td class="td1"><p class="p2"><a href="SERVICES.aspx">SERVICES</a></p></td><td class="td1"><p class="p2">CONTACT US</p></td><td class="td2"> </td></tr></table><form method="post" action="CONTACTPROCESS.aspx"><table cellpadding="0" cellspacing="0" border="0"><tr><td class="td3"><p>E-mail:</p></td></tr><tr><td class="td3"><input type="text" size="25" name="email" /></td></tr><tr><td class="td3"><p>Message:</p></td></tr><tr><td class="td3"><textarea cols="30" rows="5" name="message"></textarea></td></tr><tr><td class="td4"><input type="submit" value="Send Message" /></td></tr></table></form> When I open the page using INTERNET EXPLORER I see a space between the first table and the second one because of the form tag between them.When I open it with FIREFOX it looks fine ..Can someone please tell me how to fix this problem ...Thanks very much,zeid
  14. Fixed it ...Solution: I should set the margins because IE doesn't do that for you: margin : 1.5em 0;
  15. You know what, I figured that the problem is from the DTD .. When I removed it from the page and Opened it in Internet Explorer 6 ---> the tables moved to the left of the page .. But when I used in FireFox it was perfect.So can you please help me fix this and still use the Strict XHTML data type.Thanks very much
×
×
  • Create New...