active questions tagged xhtml - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:51:31Z http://stackoverflow.com/feeds/tag/xhtml http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/796087/make-a-div-into-a-link 3 Make a DIV Into a Link EE 2009-04-28T03:15:24Z 2009-12-02T00:31:02Z <p>I am looking for an XHTML 1.1 valid way to make a DIV into a clickable link.</p> http://stackoverflow.com/questions/1821930/how-do-you-create-tabstops-in-xhtml 1 How do you create tabstops in XHTML? btelles 2009-11-30T19:37:30Z 2009-11-30T20:49:45Z <p>Hi there, I'd like to use an element like 'span' or any other regular ole' element to create a tabstop in an xhtml webpage (i.e. valid XML). The effect should be equivalent to 4 <code>"&amp;nbsp;"</code> right next to each other (couldn't do that without putting a space between the ampersand and 'n'. Anyone know how to do this?</p> <p><strong>Edit</strong>: My initial post did not show the <code>&amp;nbsp;</code> What I want to do is avoid using that method if possible.</p> <p>Some more details...</p> <p>Supposedly, the following CSS is invalid</p> <pre><code>span { display:inline; width: 2em } </code></pre> <p>because inline elements (from what I understand) do not have widths.</p> <p>Also, this css:</p> <pre><code>span { display: block; width: 2em; float: (pick a direction) } </code></pre> <p>would not work because it would cause the element to touch the edge of the block, causing irregular flow.</p> <p>In the off chance that someone answers "Why on earth would you do that?" (hehe)...It's because I'm writing a legal document that requires said formatting. :-)</p> <p>Thanks everyone!</p> <p>Bernie</p> http://stackoverflow.com/questions/1820898/how-to-submit-part-of-a-textarea-anyfield-using-js-or-dhtml-or-any-other-way 0 How to Submit part of a TextArea/anyfield using JS or DHTML or any other way? unknown (google) 2009-11-30T16:36:17Z 2009-11-30T16:43:21Z <p>I want to submit part of a TextArea (User has entered Multiple Lines and selected one line either by Highlighting or by placing the cursor on the line). If user press the Submit Button then, I need to get the Line or word user has selected.</p> <p>Just for my requirement Understanding See Below Example</p> <p>Ex:- TOAD, SQL Server : where we can enter multiple Queries and When we press CTRL+Enter or F9 the selected Query only gets submitted to Database</p> http://stackoverflow.com/questions/1766652/jquery-selecting-the-first-child-with-a-specific-attribute 0 jQuery Selecting the first child with a specific attribute kingrichard2005 2009-11-19T21:18:59Z 2009-11-30T13:25:38Z <p>Hello, I have a form in HTML with multiple inputs of type submit:</p> <pre><code>&lt;form id = "myForm1" action="doSomethingImportant/10" class="postLink" method="post"&gt; &lt;input type="hidden" id="antiCSRF" name="antiCSRF" value="12345"&gt;&lt;/input&gt; &lt;input type="submit" value="clickThisLink"&gt;&lt;/input&gt; &lt;input type="submit" value="Don'tclickThisLink"&gt;&lt;/input&gt; &lt;/form&gt; </code></pre> <p>What I want to do is select only the first input with type submit while ignoring the others, the snippet of code I currently have is as follows, note it is within a for-each loop that goes through all forms on my page, hence (this) to avoid confusion:</p> <pre><code>var name = $(this).find("input[type='submit']").val(); </code></pre> <p>I'm thinking this already grabs the first input of type submit by default, I'm not sure if that assumption is correct or if there's a more formal way of going about it, thanks.</p> http://stackoverflow.com/questions/1245095/ie8-and-quirks-mode 0 IE8 and quirks mode Emily 2009-08-07T14:36:47Z 2009-11-30T10:10:13Z <p>Does IE8 run in quirks mode like IE6/7?</p> <p>I have a webpage that has some truly bizarre code. The content is centered with padding and negative margins. </p> <p>It works correctly in IE6/7 and other browsers but in IE8 the content area is half as wide and not centered (flag for quirks mode).</p> <p>The source code has three blank lines before the DOCTYPE. I know that will throw IE6 into quirks mode. Will it also affect IE8?</p> <p>I don't have access to the source so I cannot remove those lines to test it.</p> http://stackoverflow.com/questions/1751398/document-conversion-software-xhtml-and-css-to-pdf 2 Document conversion software: XHTML and CSS to PDF Max 2009-11-17T20:04:01Z 2009-11-30T05:26:39Z <p>I have a large database of XHTML that I wish to render as PDFs and/or RTF using CSS. Is there an off-the-shelf/cheap solution that could do this at scale? Large meaning terabytes. Need something that is robust and good at handling large volumes of files.</p> http://stackoverflow.com/questions/1805757/css-positioning-puzzle 0 CSS Positioning Puzzle Burt 2009-11-26T21:34:03Z 2009-11-29T22:40:07Z <p>The image below represents a website layout I am trying to create. The blue section (bottom right) represents an image should be behind the three neighboring elements and overflow them slightly.</p> <p>I do not know the best way to do this, at the minute I have a wrapper div round the colored sections and put a background image in there but I am not sure if this is the best approach as the wrapper div needs to have a fixed size.</p> <p>Any suggestions would be very welcome. </p> <p><img src="http://www.gumpshen.com/images/layout.png" /> </p> http://stackoverflow.com/questions/1753858/are-javascript-disabled-users-which-are-very-low-in-the-world-is-a-topic-of-acc 1 Are javascript disabled users (which are very low in the world) is a topic of accessibility? Jitendra 2009-11-18T05:34:39Z 2009-11-29T20:41:18Z <p>Are javascript disabled users (which are very low in the world) is a topic of accessibility? To make accessible everythig without javascript is more time consuming then to make site compatible for IE6. My question is actually how many people keeps javascript diabled in browser , and if it's very low percentage in the work then why we need to make site compatible without javascript. What WCAG 2.0 says about this? </p> <p>I want to know other opinions on this issue.</p> <p><a href="http://www.webstandards.org/2008/12/11/wcag-20-is-a-w3c-rec/" rel="nofollow">See what is written in this article</a> </p> <blockquote> <p>With WCAG 2, “Don’t use x” is no longer valid. (Was it ever?) It is now up to you, the developer, to work on the direct accessibility of your content, no matter what technology you choose. I believe we’re about to experience a new wave of accessible design techniques, as a result.</p> </blockquote> http://stackoverflow.com/questions/1814830/what-is-the-difference-between-browser-rendering-engine-and-user-agent 3 What is the difference between Browser , Rendering engine and user agent? Jitendra 2009-11-29T06:32:27Z 2009-11-29T14:57:08Z <p>To make cross platform and cross browser website application what is the role of user agent switcher?</p> <p><a href="https://addons.mozilla.org/en-US/firefox/addon/59" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/59</a></p> <p><img src="https://addons.mozilla.org/en-US/firefox/images/p/19212/1245518908" alt="alt text"></p> <p>Is user agent different thing then rendering engine?</p> <p>and if some browser use same rendering engine then do we need to check on every browser or one is enough?</p> http://stackoverflow.com/questions/1801752/where-we-should-put-skip-to-content-links 2 Where we should put "skip to content" links? Jitendra 2009-11-26T05:48:49Z 2009-11-28T21:57:15Z <p>See place 1,2 and 3.</p> <pre><code>&lt;body&gt; &lt;Place 1&gt; &lt;div id="container"&gt; &lt;Place 2&gt; &lt;div id="header"&gt; &lt;Place 3&gt; &lt;div id="logo"&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> http://stackoverflow.com/questions/317854/easiest-way-or-best-tools-to-convert-word-text-to-clean-xhtml 2 Easiest way or Best tools to convert word text to clean (X)HTML Salt Packets 2008-11-25T16:03:42Z 2009-11-28T21:19:39Z <p>This might have been asked in another way. I am not doing it on the fly however. Once in a while we get pieces of content in word files that have em dashes, bold, italic text and block quotes. Is there a good tool to convert this into a clean html code. </p> <p>Otherwise what other approaches people take. </p> http://stackoverflow.com/questions/1802240/attribute-runat-is-not-a-valid-attribute-did-you-mean-content-or-target-h 0 Attribute "runat" is not a valid attribute. Did you mean "content" or "target"? How to solve this asp.net validation error Jitendra 2009-11-26T08:17:51Z 2009-11-28T06:05:38Z <p>see here this error - <a href="http://validator.w3.org/check?verbose=1&amp;uri=http%3A%2F%2Fwww.sitecore.net%2F" rel="nofollow">http://validator.w3.org/check?verbose=1&amp;uri=http%3A%2F%2Fwww.sitecore.net%2F</a></p> http://stackoverflow.com/questions/1805718/how-can-i-get-the-wordpress-languageattributes-function-to-return-valid-xhtml-1 0 How can I get the WordPress language_attributes function to return valid XHTML 1.1? dommer 2009-11-26T21:24:20Z 2009-11-27T18:26:51Z <p>I have a WordPress template that contains the following element:</p> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml" &lt;?php language_attributes('xhtml'); ?&gt;&gt; </code></pre> <p>This returns:</p> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="en-US"&gt; </code></pre> <p>Unfortunately the "lang" attribute is invalid XHTML 1.1 - and the client would like this level of validation.</p> <p>WordPress' general-template.php file contains the following code:</p> <pre><code>if ( get_option('html_type') == 'text/html' || $doctype == 'html' ) $attributes[] = "lang=\"$lang\""; </code></pre> <p>$doctype is the parameter passed to it (in this case 'xhtml'). Should get_option be returning a value other than 'text/html'? If so, what should I be setting in WordPress to achieve this - if anything?</p> <p>I've also tried using preg_replace to take out the "lang" attribute, but this didn't seem to be able to match the text. If I enter the text manually, it matches! Possibly an encoding issue with the string being returned by language_attributes? </p> http://stackoverflow.com/questions/1717722/website-surfacing-blank-pages-in-ie6 0 Website surfacing blank pages in IE6 bdls 2009-11-11T20:07:13Z 2009-11-27T10:36:47Z <p><em>- Since discovering more about my problem I have modified my question</em></p> <p>A single user is complaining that (on XP and using IE6) they're not able to follow any links around my site. The behaviour they're seeing is clicking a link shows a blank page, but doesn't change the url in the address bar of the browser. Pressing refresh at this point then displays the page correctly with the correct URL in the address bar.</p> <p>All anchors are correct, and as well as testing the site in all <em>our favourite</em> browsers I have also tested the site myself on XP using IE6 and have <strong>no problems</strong>.</p> <p>Has anyone any thoughts on what could be causing this? Perhaps it could be the fact they're within a company network for example? -- I don't see how that could cause a problem, but I am so far coming up empty.</p> <p>I'm using XHTML &amp; PHP. Headers are being received correctly. I've also ensured full PHP error reporting is on and there are no errors.</p> http://stackoverflow.com/questions/1807676/validating-xhtml-elements-with-xml-children 0 Validating XHTML elements with XML children Matty F 2009-11-27T09:34:14Z 2009-11-27T09:48:27Z <p>G'day guys,<br> I've tried reading the XML Modularization recommendation which promises to allow custom XHTML extensions but can't make heads nor tails from it. I need an XML document containing a mix of XHTML and user-defined XML elements to validate and having trouble doing so. Unfortunately I'm using an XSD and not a DTD, a la XSL which validates XSL elements as children of XHTML elements. Here's a short sample of what I'd like to validate:</p> <pre><code>&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;my:element name="titledata" /&gt;&lt;/title&gt;&lt;/head&gt;&lt;body /&gt;&lt;/html&gt; </code></pre> <p>Cheers!</p> http://stackoverflow.com/questions/1795019/form-entry-gets-inserted-into-the-html-code 0 Form entry gets inserted into the HTML code? RPK 2009-11-25T06:25:31Z 2009-11-27T07:56:55Z <p>I am using following code to display HTML Form on my web page. This code also uses a third-party .js file that is linked to it. Everything is working fine except that when the first record is inserted and after saving the record the control comes back to this form, the company name entered in the first entry is seen in the code itself. I mean to say that the entry company name is somehow gets inserted into the HTML code.</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt; &lt;script type="text/javascript" src="widgEditor.js"&gt;&lt;/script&gt; &lt;title&gt;Job Listing Entry&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;Form id="frmNewEntry" method="post" action="insert_listing.php"&gt; &lt;table id="tblEntry" cols="2" border="0"&gt; &lt;tr&gt;&lt;td&gt;Date:&lt;/td&gt;&lt;td&gt;&lt;input id="LDate" name="LDate" type="text" size="50"&gt;[yyyy/mm/dd]&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Places:&lt;/td&gt;&lt;td&gt;&lt;input id="Places" name="Places" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Company:&lt;/td&gt;&lt;td&gt;&lt;input id="Company" name="Company" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Designation:&lt;/td&gt;&lt;td&gt;&lt;input id="Designation" name="Designation" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Project Details:&lt;/td&gt;&lt;td&gt;&lt;textarea class="widgEditor" id="ProjectDetails" name="ProjectDetails" cols="100" rows="10""&gt;&lt;/textarea&gt; &lt;br&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Desired Candidate:&lt;/td&gt;&lt;td&gt;&lt;textarea class="widgEditor" id="DesiredCandidate" name="DesiredCandidate" rows="5" cols="100" onblur="this.value=MakeInitialCapital(this.value);"&gt;&lt;/textarea&gt; &lt;br&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;HR Name:&lt;/td&gt;&lt;td&gt;&lt;input id="HRName" name="HRName" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"&gt; &lt;br&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;HR Contact:&lt;/td&gt;&lt;td&gt;&lt;input id="HRContact" name="HRContact" type="text" size="50" onblur="this.value=MakeInitialCapital(this.value);"&gt; &lt;br&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Email:&lt;/td&gt;&lt;td&gt;&lt;input id="Email" name="Email" type="text" size="50"&gt; &lt;br&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;&lt;input id="Submit" name="Submit" value="Submit" type="submit"&gt; &lt;br&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/Form&gt; &lt;/body&gt; &lt;/html&gt; &lt;script language="JavaScript" type="text/javascript"&gt; function MakeInitialCapital(str) { return str.toLowerCase().replace(/\b[a-z]/g, cnvrt); function cnvrt() { return arguments[0].toUpperCase(); } } &lt;/script&gt; </code></pre> <p>For example, if I had typed the company name, say, Example Solutions, then the first line of the above code gets modified as:</p> <pre><code>Example Solutions &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; </code></pre> http://stackoverflow.com/questions/1802871/how-to-extract-content-of-web-pages-easily-which-are-embeded-in-html-pages-inside 0 How to extract content of web pages easily which are embeded in html pages inside <body>? Jitendra 2009-11-26T10:30:44Z 2009-11-27T07:36:56Z <p>How to extract content of web pages easily which are embeded in html pages inside only (like img, pdf, flv, doc, rtf, wmc etc) not css and css backgrounds images,javascript.</p> <p>I'm migrating content old site to new site. re-uploading all images, linked pdf, flv etc. </p> http://stackoverflow.com/questions/1806736/how-to-make-the-first-column-of-a-table-invisible 0 How to make the first column of a table invisible? RPK 2009-11-27T04:34:07Z 2009-11-27T04:37:26Z <p>Below is the CSS code of my table display. How can I modify this code to make the first column invisible?</p> <pre><code>table.tbl { width:100%; border: 2px solid #c3daf9; font-size: 0.9em; clear: both; } td.tbl-header { background: url(/images/head_bg.gif); text-align: center; padding: 3px; font-weight: bold; border-bottom: 2px solid #c3daf9; } tr.tbl-footer {} table.tbl-footer { font-size: 1em;} tr.tbl-row {height: 40px} tr.tbl-row:hover { background: #EBFFFF; } /* Old color: #E9E9E9 */ tr.tbl-row-even { background: #F5F9FF; } tr.tbl-row-odd { background: #FFFFFF; } tr.tbl-row-highlight:hover { background: lightblue; cursor: pointer; } td.tbl-nav { background: url(/images/head_bg.gif); height: 20px; border-top: 2px solid #c3daf9; color: #4D4D4D; } td.tbl-pages { text-align: center; } td.tbl-row-num { text-align: right; } td.tbl-cell {} td.tbl-controls { text-align: center; } td.tbl-found {} td.tbl-checkall {} td.tbl-page { text-align: right; } td.tbl-noresults { font-weight: bold; color: #9F0000; height: 45px; text-align: center; } span.tbl-reset { margin: 5px 5px; } img.tbl-reset-image { margin-right: 5px; border: 0; } span.tbl-create { margin: 5px 0; } img.tbl-create-image { margin-right: 5px; border: 0; } div.tbl-filter-box {} img.tbl-arrows { border: 0; } img.tbl-order-image { margin: 0 2px; border: 0; } img.tbl-filter-image { border: 0; } img.tbl-control-image { border: 0; } span.page-selected { color: black; font-weight: bold; } input.tbl-checkbox {} </code></pre> http://stackoverflow.com/questions/1805022/how-to-handle-special-entities-in-email-addresses 0 How to handle Special Entities in email addresses? Jitendra 2009-11-26T18:09:05Z 2009-11-26T18:43:52Z <p>if you look at the email address</p> <p>b&amp;byouaddress@email.com (this email address is a example)</p> <p>The &amp; is not a valid character for the email address &amp; thus you get "b" in mail that is generated..I have tried using almost all the encodings available on net...</p> <p>But my CMS decodes them again into html &amp; the result is again same as before... So no use of it..</p> <p>I have tried using almost all the encodings available on net... + I also have tried javascript encoded mail id but even that didn’t work.. :( </p> http://stackoverflow.com/questions/1804338/list-doesnt-display-inline-ie 0 list doesnt display inline IE? Elliott 2009-11-26T15:31:25Z 2009-11-26T15:46:26Z <p>The code below works fine in firefox, but the list doesnt display in-line with IE.</p> <pre><code>&lt;div id="nav"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="#"&gt;1&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;2&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;3&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;4&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="#"&gt;5&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>CSS:</p> <pre><code>#nav { width: 800px; padding: 0px; margin: 0 auto; list-style-type: none; } #nav ul li a { font-size: 18px; text-decoration: none; text-align: center; color: #ffffff; background-color: #003366; padding: 20px; list-style: none; float: left; list-style-type: none; line-height: 5px; display: inline; margin-left: 5px; } #nav ul li a:hover { background-color: #ccc; } </code></pre> <p>Also in IE the bullet points still display?</p> http://stackoverflow.com/questions/693936/good-editors-for-web-development-on-os-x 7 Good Editors for Web Development on OS X? JimDaniel 2009-03-29T01:26:59Z 2009-11-26T13:46:38Z <p>I'm getting started with web development on OS X need some good development tools, text editors...etc. I have XCode already but it doesn't seem geared towards editing the web technologies I will be using: xhtml, javascript, css, and php. </p> <p>So I am looking for some ideas. I know about TextMate, but am trying to avoid spending any $$$.</p> <p>Thanks!</p> <p>UPDATE: I downloaded them all and so far I like TextMate the best, so I'll be using it for a month at least. Aquamacs and TextWrangler are also good. The web IDEs like Coda and Espresso are pretty interesting. I might give them a chance in the future, but for now I want to keep it lightweight. Thanks all.</p> http://stackoverflow.com/questions/1795235/any-library-to-convert-richtext-to-html 0 Any library to convert richtext to html. RPK 2009-11-25T07:30:52Z 2009-11-26T11:40:55Z <p>At present I am using <a href="http://code.google.com/p/widgeditor/" rel="nofollow">widgEditor</a></p> <p>It is a good library in JavaScript but has some minor issues. Is there any other library that can convert a Rich Text into an HTML equivalent?</p> http://stackoverflow.com/questions/1795242/how-to-figure-out-if-an-html-block-does-not-contain-any-text-nodes 0 How To Figure Out if an HTML Block Does Not Contain Any Text Nodes Robert C. Barth 2009-11-25T07:32:16Z 2009-11-26T06:36:59Z <p>How do you/is there a way to figure out if a block of HTML contains zero text nodes?</p> <p>e.g. this:</p> <pre><code>&lt;p&gt;&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/p&gt; </code></pre> <p>contains zero text nodes whereas this:</p> <pre><code>&lt;p&gt;Stuff&lt;/p&gt;&lt;div&gt;&lt;span&gt;other stuff&lt;/span&gt;&lt;/div&gt; </code></pre> <p>contains two. </p> <p>Additionally, you're guaranteed that the HTML is XHTML-compliant and the content is probably less than 4k in size. I'm using .net, so if some kind of server-side suggestion is made, please make it in C#. I suppose I could load the thing into an XmlDocument and traverse the DOM tree looking for non-empty XmlText nodes, but that would be a last resort as speed is of paramount concern.</p> http://stackoverflow.com/questions/1771999/simple-xslt-question-how-can-i-add-the-closing-at-the-end-of-a-single-tag 0 Simple XSLT Question: How can I add the closing "/" at the end of a single tag? Dr Dork 2009-11-20T17:21:00Z 2009-11-26T03:26:15Z <p>Hello, I'm teaching myself XSLT and am still trying to wrap my brain around the small details. I have a template in my XSL stylesheet that looks like this...</p> <pre><code>&lt;td&gt;&lt;img src="{normalize-space(image)}"/&gt;&lt;/td&gt; </code></pre> <p>which produces XHTML that looks like this...</p> <pre><code>&lt;td&gt;&lt;img src="somefile.jpg"&gt;&lt;/td&gt; </code></pre> <p>How do I change my XSL template to add a trailing "/" to the img tag so that the XHTML output looks like this...</p> <pre><code>&lt;td&gt;&lt;img src="somefile.jpg"/&gt;&lt;/td&gt; </code></pre> <p>Also, why does the trailing slash in the template get omitted in the output?</p> <p>Thanks in advance for all your help!</p> http://stackoverflow.com/questions/1777069/web-design-examples-by-element-type 0 web design examples by element type Don 2009-11-21T22:58:34Z 2009-11-25T20:31:21Z <p>Hi,</p> <p>I'm trying to improve the style of a website. I'm looking for some examples of beautifully styled HTML elements (tables, lists, headings, etc.) that I can draw on for inspiration, or just copy and paste verbatim (if that's permitted).</p> <p>Some explanation of how the styling was achieved would be nice, but is not absolutely necessary, as I can always use Firebug to reverse engineer the design. Ideally the designs should:</p> <ul> <li>Be compatible with all modern browsers (which excludes IE6 IMO)</li> <li>Use little or no JavaScript</li> <li>Be valid XHTML transitional/strict</li> </ul> <p><strong>EDIT:</strong> Ideally, the site(s) should provide an easy way to view <strong>a list of styles for a particular element type</strong> (ordered list, table, heading, etc.)</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1798706/how-to-execute-a-hyperlink-automatically-through-php -4 How to execute a hyperlink automatically through php Rajasekar 2009-11-25T17:45:00Z 2009-11-25T18:09:24Z <p>I had a hyperlink like this</p> <p><a href="http://www.mywebsite.com/sendmessage.php?uid=siva&amp;pwd=mani&amp;phone=newairtel&amp;msg=dg" rel="nofollow">http://www.mywebsite.com/sendmessage.php?uid=siva&amp;pwd=mani&amp;phone=newairtel&amp;msg=dg</a></p> <p>Normally in HTML we put href to that link and the link will open after the user click that link.</p> <p>But I want that link to be executed automatically without user interaction using PHP. How can i get it.</p> <p>Plz help. Any Help will be highly appreciated</p> <p><strong>I DONT WANT THAT PAGE SHOULD BE REDIRECTED. JUST I NEED THE LINK TO EXECUTE</strong></p> http://stackoverflow.com/questions/1781372/how-to-style-content-of-pages-without-adding-css-class-to-element 1 How to style content of pages without adding css class to element? Jitendra 2009-11-23T06:09:48Z 2009-11-25T16:27:53Z <p>I use CMS for client and client doesn't know CSS he use WYSIWYG editor to put content in pages. Client adds Paragraphs, images, images in paragraph (left or right floated), ordered and unordered list, Tables. Problems comes when he want to add images in paragraph (left or right floated). and without adding css class it's not possible. And i don't want to add <code>&lt;div&gt;</code> in content because WYSIWYG editor can't manage div and client works in WYSIWYG mode.</p> <p>How to style content of pages without using css class?</p> http://stackoverflow.com/questions/915338/xpath-find-link-url-by-link-text 2 XPath: find link URL by link text flybywire 2009-05-27T12:05:42Z 2009-11-25T13:51:35Z <p>I have a well formed <a href="http://en.wikipedia.org/wiki/XHTML" rel="nofollow">XHTML</a> page. I want to find the destination URL of a link when I have the text that is linked.</p> <p>Example</p> <pre><code>&lt;a href="http://stackoverflow.com"&gt;programming questions site&lt;/a&gt; &lt;a href="http://cnn.com"&gt;news&lt;/a&gt; </code></pre> <p>I want an <a href="http://en.wikipedia.org/wiki/XPath" rel="nofollow">XPath</a> expression such that if given <code>programming questions site</code> it will give <code>http://stackoverflow.com</code> and if I give it <code>news</code> it will give <code>http://cnn.com</code>.</p> http://stackoverflow.com/questions/912906/banding-with-xsl 1 Banding with xsl BillZ 2009-05-26T21:37:52Z 2009-11-25T08:17:35Z <p>I am beginning to think that the problem isn't with the banding code. Somehow count is not coming out correct. Could it be in either the xml, I have approx. 150 of the case-study nodes? Or can it be in the order in which I am doing the for-each and the if?</p> <pre><code>&lt;!-- XML --&gt; &lt;case-studies&gt; &lt;case-study&gt; &lt;name&gt;Company A&lt;/name&gt; &lt;solutionType&gt;Mobility&lt;/solutionType&gt; &lt;solutionType&gt;Convergence&lt;/solutionType&gt; &lt;solution category="Business services"&gt;Product&lt;/solution&gt; &lt;solution category="Business services"&gt;Industry&lt;/solution&gt; &lt;solution category="#"&gt;A-Z&lt;/solution&gt; &lt;product&gt;Product 1&lt;/product&gt; &lt;/case-study&gt; &lt;/case-studies&gt; </code></pre> <p>I am trying to create a table that alternates gray rows within the for-each. The code below returns an eratic effect.</p> <p>Thanks </p> <pre><code> &lt;xsl:sort select="../name" /&gt; &lt;xsl:if test="@category[. = $solName]"&gt; &lt;tr&gt; &lt;xsl:if test="(position() mod 2 = 1)"&gt; &lt;xsl:attribute name="bgcolor"&gt;#e7e7e7&lt;/xsl:attribute&gt; &lt;/xsl:if&gt; &lt;td class="cell1"&gt; &lt;img src="/images/icons/infoWhite.gif" style="margin:3px 3px 0 0px;" id="{../name}" onmouseover="xstooltip_show('{../url}', '{../name}', 0, 10);" onmouseout="xstooltip_hide('{../url}');" /&gt; &lt;div id="{../url}" class="xstooltip" style="margin:10px 0 0 10px;"&gt; &lt;div class="floatLeft"&gt;&lt;strong&gt;Product(s):&lt;/strong&gt;&lt;/div&gt; &lt;div class="margLeft10 floatLeft"&gt; &lt;xsl:for-each select="../product/prodName"&gt; &lt;div class="clearRight"&gt;&lt;xsl:value-of select="."/&gt;&lt;/div&gt; &lt;/xsl:for-each&gt; &lt;/div&gt; &lt;/div&gt; &lt;/td&gt; &lt;td class="cell2" style="padding-top:2px;"&gt;» &lt;a href="{../url}"&gt;&lt;xsl:value-of select="../name"/&gt;&lt;/a&gt;&lt;/td&gt; &lt;td class="cell3"&gt; &lt;xsl:for-each select="../solutionType"&gt; &lt;div class="clearRight"&gt;&lt;xsl:value-of select="."/&gt;&lt;/div&gt; &lt;/xsl:for-each&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/xsl:if&gt; &lt;/xsl:for-each&gt; </code></pre> http://stackoverflow.com/questions/1792626/ie-6-strange-problem-background-bullet-only-shown-on-mouse-while-hover-is-not-app 0 IE 6 strange problem background bullet only shown on mouse while hover is not applied? Jitendra 2009-11-24T20:11:46Z 2009-11-25T02:49:31Z <p>in IE6 background image only shows if we mouse over on the link otherwise not</p> <pre><code>#tbaContentContainer P A:link { font-size:1em; background: url(~/media/images/e/experian/images/content/arrow.ashx) no-repeat -2px 5px ; color: red; text-indent: 15px;position:relative} </code></pre> <p>Attached here is a screenshot for more information.</p> <p><img src="http://easycaptures.com/fs/uploaded/428/9459264109.jpg" alt="alt text"></p> <p>Can someone please look into this and advise?</p>