Jump to content

jlhaslip

Members
  • Posts

    2,568
  • Joined

  • Last visited

Everything posted by jlhaslip

  1. You could try this: body {font-family: Tahoma, Arial, sans-serif} !important The "!important" affects the cascade somewhat. Read a little bit about the cascade at the w3schools tutorials.But if they don't have those fonts installed, you are hooped. Also, be sure to complete the list of fonts with a 'generic' family, in this case, sans-serif.
  2. jlhaslip

    html help

    "underscore""Blank"Gotta remember that... :)Actually, I believe the w3c recommends that you not force another window opening. Either let the user decide whether to open the additional window or let their browser decide.
  3. Have you tried using percentages as the margin size instead of pixels?Perhaps we can see your code and preferably a link to your page to see it behaving as you describe?
  4. jlhaslip

    html help

    <a href="#" target="blank" > link </a> Specify the target. Xhtml won't like it.
  5. jlhaslip

    Please Visit

    Ask him... http://www.dmcinsights.com/phorum/index.php
  6. jlhaslip

    Please Visit

    Larry Ullman, Building Dynamic Web Sites using php and mysql, Second Edition.
  7. jlhaslip

    Scrolling Text

    Put this in your CSS file:#scrolling_text { display: none; }
  8. jlhaslip

    iFrames

    Have a look here, too:http://jlhaslip.trap17.com/samples/frames/css_frame.htmlhttp://jlhaslip.trap17.com/samples/frames/...ame_hidden.htmlCSS "frames" might work, too... depending on the frame contents.
  9. error received - headers already sent by (output started at /hsphere/local/home/cstrauss/layout.php:17) in /hsphere/local/home/cstrauss/phpBB2/includes/sessions.php on line 183Fist line of the Login Script - include $_SERVER['DOCUMENT_ROOT'].'/layout.php';So, it appears that 'layout.php' is writing some headers to the client right off the bat as soon as the program starts, so in the sessions.php portion of the scripting, you are attempting to send Headers again and that is not allowed. Look up the information on using Output Buffering (ob_start) http://ca.php.net/manual/en/function.ob-start.php in the php manual. This buffers the page output until all the headers are sent and then you can dump the page to the client.
  10. jlhaslip

    css

    I'm not understanding the problem. Could you please post a link to your page or the code please.. thanks.
  11. jlhaslip

    css

    a { }a:link { }a:visited { }a:hover { }a:active { }In that order, otherwise they cancel the result.
  12. Exactly the same as the situation which I described above. If I switch Browsers, the login at the other Forum messes up. It really is a bother when you have 3 or 4 browsers open during the day checking pages while working , travelling from Forum to Forum, and don't always remember which one you used last time at whichever Forum. Is there any indication that they are working towards a fix or cure?
  13. Same problem on another site that recently upgraded to IBP 2.2. I was told they changed the set-up deep in the dark side of the forum and although it is more secure, Firefox has trouble with it , somehow. Don't have any details, but might check into it and report back if I find anything significant.And 'time-outs' are more frequent there, too.
  14. There are all kinds of Photo Gallery scripts avail through Google. Should be simple enough to find what you need. Good luck.
  15. I would guess that there is html to submit the form, php to process the information, a Database to store it in until the next time it is needed to be retrieved and displayed using php again and html at the client. Or possibly another server side scripting language instead of php, but same effect.
  16. jlhaslip

    Height issue

    height:400px; <== change this to a larger number... should work, might depend on the Browser being used. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title> An XHTML 1.0 Strict template </title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="imagetoolbar" content="no" /> <meta http-equiv="content-style-type" content="text/css" /> <meta http-equiv="expires" content="Mon, 01 Jan 1995 00:01:01 CST" /> <meta http-equiv="keywords" content="keywords list here, comma seperated" /> <meta http-equiv="description" content="insert a description here." /> <meta http-equiv="reply-to" content="jlhaslip@yahoo.ca" /> <meta http-equiv="author" content="Jim Haslip" /> <meta http-equiv="reply-to" content="jlhaslip@yahoo.ca" /> <link rel="stylesheet" type="text/css" href="style_file_here.css" /><style type="text/css">/*<![CDATA[*/* html { margin:0; padding:0;}html, body {height: 100%;}#wrapper { /* div you want to stretch */min-height: 100%;}body { margin:0 auto; text-align:center; }#wrapper { margin: 0 auto; width:1000px; background-color: #ffeecc; border: 1px solid #666666; }#header { margin: 1em 0; text-align:center; border-bottom: 1px solid #666666; }#header h1 { margin: 1em 0; }p { margin: 1em; padding:1em; text-align:left }#footer { margin: 1em auto; padding: 1em; text-align:center; border-top: 1px solid #666666; }#footer a { margin: 1em auto; padding: .15em; }div#box_one { background-color:#FF0000; width: 17%; margin:0; padding:0; height:999px; border: 1px solid #000; } div#box_two { width: 17%; height: 150px; padding: 0px; margin: 0px; border: 1px solid #000; }/*]]>*/</style><!--[if lte IE 6]><style type="text/css">#wrapper {height: 100%;}</style><![endif]--> </head> <body> <div id="wrapper"> <div id="header"> <h1> ... Page Header here ... </h1> </div><!-- header --> <div id="box_one"> </div> <div id="box_two"> </div> <div id="footer"> <a href="http://validator.w3.org/check?uri=referer">validate the xhtml</a> <a href="http://jigsaw.w3.org/css-validator/">validate the css</a> </div><!-- footer --> </div><!-- wrapper --> </body></html>
  17. for an exampleOops... you wanted an image, sorry...
  18. jlhaslip

    PicsbyPros

    Validate that page to see all of the things I would be commenting on. The inline styling can be moved to the style tags. Target the Form and Input selectors to get them to behave. And you should be able to remove all those div tags, too. Let the form elements go where they and to, then use padding and margin to place them.No need to have them in the html, especially with an xhtml DTD. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head> <title>An XHTML 1.0 Strict standard template</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <link type="text/css" rel="stylesheet" href="./w3c_suggested.css" media="all" /></head><style type="text/css">* html { margin: 0; padding: 0; }form { color: red; background: yellow; width: 25%; border: 1px solid #000; }input { color: #666666; background: #66ffcc; text-align: right; margin-left: 5em; }input.btn { color: white; background: #999999; margin-left: 15em; text-align: center; }span { margin-left: 3em; }</style><body><form action="form_action.asp" method="get"><p> <span class="label" >First name:</span> <input type="text" name="fname" value="Mickey" /> </p><p> <span class="label" >Last name:</span> <input type="text" name="lname" value="Mouse" /> </p><p> <input class="btn" type="submit" value="Submit" /> </p></form></body></html>
  19. The entire page is too dark. I guess my age is showing, but I simply have a difficult time with the dark background and light/white text. I am not exactly a 'spring chicken', so the lookers are ... well ... what they are.
  20. Best idea I come up with is to ask you to post some code and a link to the page.As for 'pre-loading the CSS', the CSS for a page is cached after the first download and should not require 'pre-loading' after that. Unless the client is clearing their cache or you have a Meta-Expire/no-cache tag in the page.Without the code we are only guessing about what is happening. Also, you don't mention which DTD you are using... if at all.
  21. jlhaslip

    Height issue

    Might work. Are you using a CSS file?Can we see some code???
  22. Too dark for my liking. hard to read for my eyes.Also, had a look at a php article on 'encryption and the article has lost its formatting, but the html code is still there.
  23. jlhaslip

    include

    include ("info_send.php"); Make certain that this file (info_send.php) is in the same folder as the script which calls it or add a referencing value to find the correct folder.ie: if the include is in the folder above the script, use include include ("../info_send.php");
×
×
  • Create New...