Jump to content

jlhaslip

Members
  • Posts

    2,568
  • Joined

  • Last visited

Everything posted by jlhaslip

  1. Which Browser version? Are you using the Fx2.0? I haven't tried pdf's in that, but using Fx 1.7(?), I link to a pdf file and it is downloaded and viewed in Adobe Reader. No problem. Is there someplace you can set the Helper Application based on file extension?
  2. Or style up a <span> similar to the above method, except without the <p></p> tags.
  3. Ajax can handle that, I believe. Otherwise, there must be some server interaction of some sort to re-load the content.
  4. this -> " " is called a 'non-breaking space' for exactly that reason.
  5. How is it not working? Are you getting an error of any sort? and can we see the code you are using, please.
  6. Supplying the code only matters if he wants to solve the issue.
  7. Just a note that you are now referring to named or 'id'd' elements and not classes. Classes have the dot in front (.), id's have the hash mark(#). Which is it?
  8. jlhaslip

    Valid CSS

    Simply state a color and background-color together. Where you change one, change the other. And I believe these are WARNINGS, not ERRORS.The one about re-defining margins would go away if you used the shorthand form of the margin declaration. margin: 0px 200px 0px 200px; // top, right, bottom, left By declaring margin: 0 and then the specific margin-left and right, you recieve a warning. Either use a short-hand version like above, or an expanded version like below: margin-top: 0px;margin-right:200px;margin-bottom: 0px;margin-left:200px; I think those changes will do it for you.
  9. Dynamic content loads into div's just fine. But, whatever...
  10. Was this your thread?http://w3schools.invisionzone.com/index.ph...ost&p=48104Have you tried the answer given there? Why are you starting another thread about the same problem? Go back to the other thread, please. Makes it easier for everyone.
  11. <iframe src="/wrestlegeek/comments/comment.php?pageid=12" width="100%" height="650px"></iframe> does this work?How many iframes are in this page? There are scrollbars all over the place.And why, exactly, are you using iframes for what could be a simple html/css three column layout using div's?http://www.w3.org/2002/03/csslayout-howtohttp://cssplay.co.uk/layouts/3cols.html#and there are many more out there.
  12. php includes would work to do that.
  13. Check this out : http://www.w3schools.com/tags/tag_blockquote.asp
  14. First clue that there is something wrong...
  15. try google.com or google.ca or google dot anything.
  16. Is there enough content in the iframe to fill the size you have requested?Maybe post a link or some code, please. Might be something else limiting the iframe sizing.
  17. Herbie, read the pinned topics. The w3schools Reference and Tutorials should be consulted before posting here.From the Reference @ w3schools for the <a> tag, optional attributes for the <a> tag includes the target. http://www.w3schools.com/tags/tag_a.asp <p>Opening W3Schools a new browser window:<a href="http://www.w3schools.com"target="_blank">W3Schools</a></p> Note that this optional attribute is not available in a strict doctype.
  18. define 'directory script', please.
  19. jlhaslip

    css with iframes

    You bet.According to this page at the w3schools, the iframe attributes you wish to use are only compatible with html or xhtml transitional or frameset Doctypes. You have a strict Doctype. Change the Doctype or drop the iframe attributes for your Strict Doctype. Your call. And thanks for dropping the music. It is an annoyance only bested by the marquee tag.
  20. Try single quotes around the image filename: body{margin: 0;padding: 0;background-color: #0b0000;background-image: url('images/bas11go256_dark_autumn.jpg');color: #2e2d2a;font-family: Georgia, "Times New Roman", Times, serif;font-size: 12px;text-align:center;} Also, to get the Browsers rendering the same, try removing the blank line at the start of the file and you might also try removing the xml prologue. I think it has the effect of forcing IE into Quirks mode, or something like that. Try it and see if it makes a difference. Report the results back here, please and thanks.
  21. Maybe the javascript onclick event handler does that? But what if js is disabled by the user?
  22. I don't have a code snippet handy, but open the file, read the data one line at a time and insert the data for the drop-down into an array. Use the array to populate the drop-down by looping through and adding the option tags. When I get my laptop back, later in the week, I have a snippet which does exactly that and I will post it up. (if I remember) In the meantime, perhaps someone else has a snippet???
  23. I would suggest a little bit of php might be in order. As a tool to manipulate the Form Data and validate the replies, you know, like confirming their email address is the correct structure, the number fields are numeric and there is no attempt to insert html that might break the layout, or worse. It isn't tough to learn.As for controlling the printed output, check out the use of media=print stylesheets.
  24. .calender_year a:hover .month { background:transparent; display:block; width:350px; height:20px; font-size:13px; font-family:georgia, "times new roman", serif; overflow:hidden; text-decoration:none; color:#000000; text-align:left; padding:0 5px; cursor:default; } Possibly due to the text-align:left when onhover?
×
×
  • Create New...