2,295 Posted Topics
Re: If you can make the images used for buttons scaleable, the image will be viewable at all screen resolutions, it will take a little manual editing of the frontpage code. Frontpage code is very overweight anyway, but that isnt an issue yet frontpage assigne pixel measurements to all elements, that … | |
Re: Directly no php is finished on the server before the page is sent javasript runs on the users browser and can respond to onclick events the combination of javascript and php to get user events and resend something in php from the server is called ajax depending on the simplicity/difficulty … | |
Re: It would possibly be useful, if you posted a functioning link | |
Re: [QUOTE=DansMuayThaiMMA;901859]Can you elaborate on number 4 please? Thanks.[/QUOTE] importance on the site should be referenced on the home page, above the line where the 'average' fullscreen user's browser cuts the page off. that cutoff is the 'fold line' | |
Re: This is Joomla's spam protection Joomla has a plugin that obfuscates email addresses, to make it harder for scrapers and bots. The visible address and effective address are not changed, just what robots can see. you can probably disable the plugin somewhere in Joomla configuration. There is likely a 'howto' … | |
Re: schema - a data model, often a term used by people who dont know any more than you to convince you that they do. (humor) [url]http://en.wikipedia.org/wiki/Schema[/url] | |
Re: the cms appears to have a function built in to obfuscate email addresses, this obfuscation is the javascript shown. check the settings in the cms for obfuscation and change it from auto to manual, (maybe). or try emailaddress&[B][/b]#[b][/B]64;domain.com | |
Re: Design in % and ems, per W3C guidelines, and you only have to make one design, that works in every size. | |
Re: [url=http://www.google.com/local/add/businessCenter?gl=US&hl=en-US]Google local business center[/url] of course it will have effect, how muc or what effect I dunno, but 3 of our locations get a lot of results from "what is near nscc" searches after we put them in google local business centers | |
Re: [code=css]#menu a:hover { color:#FFFFFF; background:#99cc00; } #menu li { position: relative; } #menu li:hover { color:#FFFFFF; background:#99cc00; position:relative; }[/code] | |
Re: check the file is writeable to the user php is running as, CHMOD, no other thoughts | |
Re: another possible failure point appears to be the 'space' in 'style Library' in the no-fail url the space is encoded %20, http does not 'like' unencoded spaces | |
Re: libraries of [url=http://www.google.ca/search?hl=en&q=feed2html&meta=]feed2html[/url] the 'smarty' library [url=http://www.google.ca/search?hl=en&q=html+rss+feed+readers&btnG=Search&meta=]google rss feed readers[/url] | |
Re: [code=robots.txt]User-agent: * Disallow: /temp/ Allow: /temp/abc.html[/code]In practice this is a bad idea - it's too fragile. Someone may publish a link to your files on their site. Or it may turn up in a publicly accessible log file, of user's proxy server, or it will show up in someone's web … | |
Re: this is a hot topic and there are tutorials [url=http://altlab.com/htaccess_tutorial.html]AltLab[/url] has my favorite, easy to follow, flexible | |
Re: In my IE 7 8, is centred Mozilla centered opera centered avant centered clear the ie cache and try again, may be old css files in the browser cache put the site on [url]http://www.browsershots.org[/url] to see what it looks like on a larger number of browsers tinyurls make everyone assume … | |
Re: This is chinese on my computer, with Chinese Simplified support installed. My guess is it will show in Chinese on the developers pc too, for the same reason, second guess is it displays online to all in chinese with chinese language support installed to test, install the Simplified chinese language … | |
Re: mostly, embedded media players are like the <img> tag they take a number of parameters, size, filename, filetype, a href to the codec where applicable. the exact process, depends on the filetype of the video I use wmv on my home vids, the format my camera takes the video html … ![]() | |
Re: no bbcode is a way to input some user modification without allowing html, and html security flaws, in that input the output pages are still html and no effect on SE | |
Re: [code=html]<a href='thispageatthere.com' style='display:none'>goto thispage</a>[/code] another method [code=html]<style type='text/css'> .hidden { display:none } </style> <a class='hidden'>bla,</a>[/code] hidden links make search bots think of Malware hidden links make users think of malware If BOTH clients want the link, to the other, put it in in clear visible text, If the other site … | |
Re: does export the posts update import the posts reduce memory demand ? | |
Re: [url=http://www.loria.fr/~szathmar/off/projects/php/phptraverse/index.php]php Traverser, by Jabba[/url] Not mine, it works options to ** password protect some folders ** there is some information you may not want to share | |
Re: expanding on AkonKagva's answer [code=php]<script type='text/javascript'> <!-- var validatethis="<?php echo $_post['input1']; ?>"; // bla bla bla bla --> </script>[/code] | |
Re: [code=php]<?php $to=stripslashes($_POST['to']); if($to == '1'){ $to='mail@.gmail.com'; @mail($to, $subject, $body, $headers); }[/code] not sure but [noparse]mail@.gmail.com[/noparse] is invalid, script will fail if $to=1, sometimes it will work, where another option is chosen, afterthought this validation could be included in the form page with a self referring form [icode] <form action=<?php echo … | |
Re: install a good Hosts file and there are no ads [url]http://mvps.org/winhelp2002/hosts.htm[/url] | |
Re: What website, of the billion/trillion or so on the web, which one is yours, what code isnt working, in what language, psychic assistance is much more difficult. | |
Re: The link is created from an sql database, the database query creates the title attribute in the link as the first 'xx' characters of the Original post in the thread without any idea of the database structure or the sql needed to pull the thread and title from the database … | |
![]() | Re: round the sub totals to two(2) decimal places the totals are 10.216 and 13.077 (or similar) displayed to two decimal places round(10.216+13.076,2) = 23.29 round(10.216,2) + round(13.077,2) = 23.30 ![]() |
Re: [code]<iframe style='top:100px;left:100px; position:fixed;' src='http://www.blablabla'></iframe> <iframe style='top:100px;left:100px; position:relative;' src='http://www.blablabla></iframe>[/code] first code remains fixed in position and the page scrolls around it second code scrolls with the page google search would have been "CSS positioning an iframe" | |
Re: You load the template into Flash and edit it job description sucks? | |
Re: Sorry, browsing two threads het reply in wrong one **wrong answer removed** | |
Re: PopUps PopOpen PopUnder are blocked by most Anything like this would get you downgraded in searches, and have a negative impact on your site traffic Use layers within your code to give the effect of popups without the stigma of popups [code=html]<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> … | |
Re: Just one you seem to misunderstand what you are doing the site will no longer function. processing of the order inventory control etc must react to user input so cannot be static html. | |
Re: The default download dialogs do just that the page download indicator on the browser bar or the file transfer dialog when downloading. Do you want to force a download to disk? | |
Re: screen shots in IE FF opera maxthon avant look pretty close to me, problem is, exactly? I might be missing it? Lose the autoplay video, it'll kill you in search engines | |
Re: anything coded can be decoded, given time and incentive, made easier, the php interpreter has to be able to decipher the code there is a prior thread [url]http://www.daniweb.com/forums/thread170346.html[/url] that discusses remote updates similar code can be used to turn off your script after a given date, lock the script to … | |
Re: [INDENT]Hierarchical : tree structure each page is accessible from its parent(s) and child(ren), by link webbed: multiple links and pathways exist from page to other pages regardlesss of the position in the site structure.[/INDENT] typically web sites are a combination of both, there are usually links to FAQ and RELATED … | |
Re: I can see the results of this code the google bot finds the site and you get 900 emails from yourself in 45 seconds, your home ISP adds your commercial site to the blacklist as a spammer and you never receive another email. The blacklist gets propogated around the web, … | |
Re: Go with essential's answer its better to separate style and content, the css can be externalised (once) when you have the page design right for the entire site and reduced file sizes - download times are always a good thing else every element that has to be styled needs [icode] … | |
Re: css [code=css] // for a element titles a[title] { font:bla; background:(url to image with round corners); color:bla; padding: enough to bring the background out; } // for all element titles *[title] { font:bla; background:(url to image with round corners); color:bla; padding: enough to bring the background out; }[/code] | |
Re: error[code=html]<img src="file:///C|/logo.gif'[/code] this specifies a file on the local file system drive c: root on your http server the file path is 'http://subdomain.domain/folder/file' or a relative path ./file this folder ../file parent folder ../folder/file subfolder of parent folder if the images are in the current folder the img src is … | |
Re: what are the concepts behind the cell addresses which cells represent [INDENT]interest rate term borrowing amount amortization period payment period[/INDENT] | |
Re: Dont let this person use Frontpage on your files Frontpage produces the most convoluted complicated code and alters things it has no business altering | |
Re: reread the css tutorial Your css has[INDENT] element COMMA element[/INDENT]the tutorial has[INDENT] element SPACE element[/INDENT] css descendants are separated by spaces, css lists are separated by commas You can also group descendants, element space element comma element space element | |
Re: ignoring proper html that validates, just to show the necessary code [code=html]<table> <tr> <td align='right'>label :</td> <td> content</td> </tr> <tr> <td align='right'>long label :</td> <td> content</td> </tr> </table>[/code]table ( tacky) or[code=html]<style type='text/css'> .left { width:35%; text-align:right; float:left;} .right {width:60%: text-alight:left; float:right;} </style> <div> <span class='left'>label</span> <span class='right'>content</span> </div> <div> <span … | |
Re: I assume from the site, you mean rollover dropdown menu a good google search would be [url=http://www.google.com/search?hl=en&ei=mHc6SoTiHZ3CmQeXz-nkBA&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=css+rollover+drop+down+menu+tutorial&spell=1] Coogle css rollover drop down menu tutorial[/url] as for frames table etc, makes no difference to the css involved, css works with just about any html element, the W3schools tutorial is pretty "old … | |
Re: [CODE=sample] <style type="text/css"> .Box { display:none; } .Box1 { display:none; } </style> <s:form action="Register" method="POST" enctype="multipart/form-data"> <s:select label="Occupation Type" id="Workselect" name="background.workType" headerKey="1" headerValue="--Please Select--" list="#{'S':'Pursuing Education','W':'Working Professional'}" /> <s:textfield class="Box" label="Organization Name" id="ON" name="background.orgName" /> <s:textfield class="Box1" id="IN" label="Institute Name" id="Iname" name="background.instName" /> </s:form>[/CODE] ?? the code supplied is not … | |
Re: javascript Back Button[code=html]<a href='JAVASCRIPT:history.go(-1);'>Back button 1</a> <a href="JAVASCRIPT:history.back(1)">Back Button 2</a>[/code]php Back button[code=php]<a href="<?php echo $_SERVER['php_referer']; ?>">Back</a>[/code] | |
Re: [code=html]<form action="blabla google blabla get the url from webmnaster tools blabla" method='get'> <input type='text' style="background:url('searchtheweb.jpg');" onfocus='style="background:none;";'> <input type='submit' value='Search' > </form>[/code] see the attached image google MSN(bing) and yahoo have a bunch of html buttons to do just that on their webmaster gadgets pages |
The End.