Jump to content

BiteMe

Members
  • Posts

    63
  • Joined

  • Last visited

Posts posted by BiteMe

  1. Besides setting up a table. Is there some way I can NOT have text wrap around my image? Some CSS code I can insert or something?Thanks
    It really would help if you gave more information on what exactly it is you are trying to achieve. Show us some code or web address.There may be a few ways to do it, but if we all randomly chuck code at you it may mess up the rest of your page.
  2. Or you could use and iframe, then use javascript to change the source of the page.eg - this is the index page

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>untitled</title><script language="javascript" type="text/javascript">//<![CDATA[function changeSrc(page){	document.getElementById("content").src= page}function MM_findObj(n, d) { //v4.01  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {	d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);  if(!x && d.getElementById) x=d.getElementById(n); return x;}function wm_SetDivText(theObj,x,theText) { //Modification of MM_setTextOfLayer  if ((obj=MM_findObj(theObj))!=null) with (obj)	if (document.layers) {document.write(unescape(theText)); document.close();}	else innerHTML = unescape(theText);}//]]></script></head><body><table width="664"  border="0" align="center" cellpadding="0" cellspacing="0">      <tr>	<td valign="top"><iframe frameborder="0" height="310px" id="content" name="content" src="link1.htm" width="405px" scrolling="yes"></iframe></td>	<td valign="top"><a href="#" onclick="changeSrc('link1.htm')">link 1</a><br />	<a href="#" onclick="changeSrc('link2.htm')">link2</a></td>  </tr></table></body></html>

    this is the code for the other pages

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>blah</title></head><body class="internalPage"><table width="100%"  border="0" cellspacing="0" cellpadding="5">  <tr>	<td align="left"><p align="justify">This is link 1 </p></td>  </tr></table></body></html>

  3. Hmmm, not really sure what you are trying to achive here.If its what i think you want try this http://www.glish.com/css/7.aspThat will get your layout sorted and then you can tweak accordingly.If its the table route you want to take then try

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>Untitled Document</title></head><body><table width="100%" border="1" cellspacing="0" cellpadding="0">  <tr>	<td> </td>	<td><table width="50%" border="1" align="right" cellpadding="0" cellspacing="0">	  <tr>		<td> </td>	  </tr>	</table></td>  </tr>  <tr>	<td colspan="2"><table width="100%" border="0" cellspacing="0" cellpadding="0">	  <tr>		<td> </td>	  </tr>	</table></td>  </tr></table></body></html>

    If this is not what you are after then i will require more info

  4. Bite Me, It might be 'pointless', but your reply didn't assist the original poster a single bit.Please review the purpose of this Forum and remember back to when you first started Programming and people assisted you. To show the disdain I regard for your posting, I will not even return the *gesture*, but I considered it.
    Point taken, but i was replying with the same bluntness as the original post.I will gladly help anyone with a problem, but ask correctly.
  5. Then how can I validate my XHTML w/o screwing up my CSS? If i don't have the doctype my xhtml wont validate
    Without a doctype you ARE screwing up the css, in effect, use the doctype and adjust your css is the right way, and the laaaaaaaw of the west.

    Help

    It really would help if we could see the code

    blahblahblahblahblah

    And this goes to anyone that reads this, i will gladly help...but i aint a mind reader

×
×
  • Create New...