User da5id - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:06:04Zhttp://stackoverflow.com/feeds/user/14979http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1744747/achievements-badges-system/1744846#17448462Answer by da5id for Achievements / Badges systemda5id2009-11-16T21:03:08Z2009-11-17T20:14:23Z<p>I think the structure you've suggested (without the "assigned" field as per the comments) would work, with the addition of an additional table, say "Submissions_User", containing a reference to user_id & an incrementing field for counting submissions. Then all you'd need is an "event listener" as per <a href="http://stackoverflow.com/questions/522943/best-way-to-store-badge-criteria">this post</a> and methinks you'd be set.</p>
<p>EDIT: For the achievement badges, run the event listener upon each submission (only for the user making the submission of course), and award any relevant badge on the spot. For the time-based badges, I would run a CRON job each night. Loop through the complete user list once and award badges as applicable.</p>
http://stackoverflow.com/questions/1690174/how-do-you-store-an-integer-while-in-a-foreach-loop/1690200#16902006Answer by da5id for How do you store an integer while in a foreach loopda5id2009-11-06T20:31:46Z2009-11-06T20:31:46Z<p>You're missing a "$" sign on two of your "i"s. It should be:</p>
<pre><code>$i = 0;
foreach ($a as $b) {
//do function
$i++;
if ($i == 250)
{
exit;
}
}
</code></pre>
http://stackoverflow.com/questions/1676308/css-two-columns-balanced-heights-with-preference-for-the-left-column/1676335#16763352Answer by da5id for CSS: Two columns, balanced heights with preference for the left columnda5id2009-11-04T20:17:17Z2009-11-04T20:17:17Z<p>Do as you are but use a repeating background image with a line down the centre for the container of the column divs. I believe this technique is called "<a href="http://www.alistapart.com/articles/fauxcolumns/" rel="nofollow">faux columns</a>".</p>
http://stackoverflow.com/questions/1646916/disappearing-submit-button-in-ie70Disappearing submit button in IE7da5id2009-10-29T22:11:35Z2009-10-29T23:21:29Z
<p>Greetings. I'm having troubles with the following legacy code. It's fine in everything except IE7, where the submit button disappears. Space is still left for it on the page, but it doesn't show. I've tried various ways of forcing hasLayout, but without success. Any suggestions?</p>
<p>XHTML (XHTML 1.0 Strict DOCTYPE):</p>
<pre><code><div id="headerFunctionality" class="clearfix">
<div id="headerSearch" class="clearfix">
<form action="http://foo.com" method="GET">
<label for="q">Search</label>
<input id="q" name="q" type="text" class="text" />
<input type="submit" id="btn_search" value="Search">
</form>
</div>
</div>
</code></pre>
<p>CSS:</p>
<pre><code>#headerFunctionality {
float: right;
display: inline;
margin: 24px 14px 25px 0;
}
#headerSearch{
float: left;
margin-left: 20px;
width: auto;
}
#headerSearch label{
position: absolute;
top: -5em;
color: #FFF;
}
#headerSearch input.text{
width: 133px;
height: 18px;
border: 1px solid #999;
font-size: 0.69em;
padding: 2px 3px 0;
margin: 0 6px 0 0;
float: left;
}
/* Replace search button with image*/
input#btn_search {
width: 65px;
height: 20px;
padding: 20px 0 0 0;
margin: 1px 0 0 0;
border: 0;
background: transparent url(../images/btn.search.gif) no-repeat center top;
overflow: hidden;
cursor: pointer; /* hand-shaped cursor */
cursor: hand; /* for IE 5.x */
}
form>input#btn_search { /* For non-IE browsers*/
height: 0px;
}
input#btn_search:focus, input#btn_search:hover {
background: transparent url(../images/btn.search.over.gif) no-repeat center top;
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1646916/disappearing-submit-button-in-ie7/1647152#16471520Answer by da5id for Disappearing submit button in IE7da5id2009-10-29T23:21:29Z2009-10-29T23:21:29Z<p>I finally sorted this by removing the:</p>
<pre><code>form>input#btn_search { /* For non-IE browsers*/
height: 0px;
}
</code></pre>
<p>I had always included this with CSS image replacements after reading it somewhere ages ago, but leaving it out doesn't seem to have affected any other browser and has fixed the problem in IE7.</p>
http://stackoverflow.com/questions/1575462/handling-back-button/1575501#15755012Answer by da5id for Handling back buttonda5id2009-10-15T22:34:54Z2009-10-16T04:44:36Z<p>You've pretty much answered your own questions in the sense that you recognise you need to code each stage of your form so that it is aware of the "state". I've done some very similar sounding forms in which I kept track of each stage in session variables, only committing the data (as in to db) after the "Confirm your details" stage.</p>
<p>You can see <a href="https://service.vicroads.vic.gov.au/forms/sponsorship/application/" rel="nofollow">an example here</a> if you're interested. In this form, the files-upload part happens during the "Sponsorship details" stage. These forms are designed to work with or without Javascript. Nothing is sent or saved until the final stage so feel free to play around - upload some sample files then step back to see what happens.</p>
<p>P.S. An advantage (I found) of using session variables to track each stage is that it makes saving and re-instituting the form very simple as all you need to do is serialize the $_SESSION array and save it to a database field.</p>
http://stackoverflow.com/questions/1534763/inline-stretchy-button-with-css-background-image1Inline stretchy button with CSS background imageda5id2009-10-07T23:24:21Z2009-10-09T16:43:28Z
<p>Anyone know if there's a bullet-proof (standards-compliant to XHTML1.1 strict, cross-browser, non-javascript) way to use CSS and background images to turn an <strong>inline</strong> link into a visual button that will stretch to accommodate different amounts of text (or text resizing)?</p>
<p>I'm thinking I need to use background images as the designer's buttons have rounded corners with a different coloured border. It must work in IE6 (Government job).</p>
<p>Im pretty sure the answer is no, but as always thought it worth a check.</p>
<p>Amongst other things, I've already tried variations on the <a href="http://www.alistapart.com/articles/slidingdoors/" rel="nofollow">sliding doors technique</a>, but can't make it work as the solution needs to work inline (i.e. within a paragraph) and I can't set a fixed width.</p>
<p>EDIT: There are several buttons, each of which has a different colour for foreground, border and background. They also have a gradient 'face', but no need for transparency or anything else 'unorthodox'. Unfortunately I can't link to examples as I'm under an NDA.</p>
http://stackoverflow.com/questions/1534763/inline-stretchy-button-with-css-background-image/1535521#15355212Answer by da5id for Inline stretchy button with CSS background imageda5id2009-10-08T03:45:26Z2009-10-08T03:45:26Z<p>I've ended up fixing it by using a variation of the sliding doors technique <a href="http://webdev.stephband.info/buttons/" rel="nofollow">documented very nicely here</a>. Basically, the difference between it and what I had been doing was this version uses the CSS property "display: inline-block".</p>
http://stackoverflow.com/questions/1495311/is-a-php-session-variable-shared-across-running-scripts/1495330#14953301Answer by da5id for Is a PHP session variable shared across running scripts?da5id2009-09-29T22:39:58Z2009-09-29T22:39:58Z<p>If I'm understanding you correctly, then the answer is the latter: Session variables are managed according to the session ID <em>which is allocated to</em> the client.</p>
<p>A 'session' refers to a user/browser-session. New user/browser, new session, new variables.</p>
http://stackoverflow.com/questions/1026682/access-and-display-images-prompt-file-downloads-that-are-located-outside-the-app/1485750#14857500Answer by da5id for Access and Display Images/ Prompt File Downloads that are located outside the application folderda5id2009-09-28T06:56:08Z2009-09-28T06:56:08Z<p>I can't test either of these theories at the moment, but I'm pretty sure you could link the img src to a php script that either:</p>
<ul>
<li>Uses GD to make a dynamic version of the image, or </li>
<li>downloads it to the browser in the same way you'd force-download a file.</li>
</ul>
http://stackoverflow.com/questions/1464193/make-a-space-between-paragraph-xhtml-css/1464224#14642242Answer by da5id for Make a space between paragraph (x)html, cssda5id2009-09-23T06:13:28Z2009-09-23T06:13:28Z<p>Set a default bottom-margin to p, then give the last tag a class with no bottom-margin.</p>
http://stackoverflow.com/questions/1425534/standard-xhtml-div-vs-li/1425661#14256610Answer by da5id for standard Xhtml- div vs li.da5id2009-09-15T07:26:09Z2009-09-15T07:26:09Z<p>The 'semantic standard' would definitely be to use tables. As others have said, this is your basic tabular data. That's what they're for, end of story. </p>
<p>However, if you can't use tables, then I would say the next most semantically meaningful structure would be a list, because it allows you to define relationships between the elements, like so:</p>
<pre><code><ul>
<li>Col1
<ul>
<li>A</li>
<li>B</li>
<li>C</li>
</ul></li>
<li>Col2
<ul>
<li>D</li>
<li>E</li>
<li>F</li>
</ul></li>
</ul>
</code></pre>
<p>Then, worst of all would be divs. 'Worst' because they have no semantic meaning. Tag-soup, basically.</p>
http://stackoverflow.com/questions/1424981/how-to-remove-all-css-classess-using-jquery/1424995#14249952Answer by da5id for How to remove all css classess using jquery?da5id2009-09-15T03:38:25Z2009-09-15T03:38:25Z<p>Hang on, doesn't removeClass() default to removing all classes if nothing specific is specified? So</p>
<pre><code>$("#item").removeClass();
</code></pre>
<p>will do it on its own...</p>
http://stackoverflow.com/questions/1424808/website-works-great-in-everything-but-ie7/1424831#14248311Answer by da5id for Website works great in everything but IE7, da5id2009-09-15T02:24:40Z2009-09-15T02:32:52Z<p>You don't say what's broken and I don't have IE7 handy, but for starters your site doesn't validate, either as XHTML Strict (your nominated doctype) or for the CSS. I would be fixing the validation errors before doing anything else.</p>
http://stackoverflow.com/questions/1407943/php-variables-for-all-functions/1407993#14079930Answer by da5id for php variables for all functions?da5id2009-09-10T22:07:50Z2009-09-10T22:07:50Z<p>(Just in case you haven't already thought of it) You could also convert all session variables 'en masse' at the start of each function thusly:</p>
<pre><code>foreach ($_SESSION as $key => $value) {
$$key = $value;
}
</code></pre>
http://stackoverflow.com/questions/1397781/suggestion-for-a-efficient-pagination-tutorial/1398044#13980440Answer by da5id for Suggestion for a efficient Pagination tutorial?da5id2009-09-09T07:20:40Z2009-09-09T07:20:40Z<p>This is a really nice function/class to have as part of your standard library. I would strongly recommend you roll your own along these lines:</p>
<ul>
<li>Query to work out total items (rows).</li>
<li>Code to work out upper & lower limit based on number of items you want to display per page.</li>
<li>Second query LIMIT'ed accordingly.</li>
</ul>
<p>I'd post some code, but that would take the fun out of it :)</p>
http://stackoverflow.com/questions/1020943/jquery-validate-with-a-dynamic-number-of-fields1jQuery validate with a dynamic number of fieldsda5id2009-06-20T04:32:27Z2009-09-06T18:59:56Z
<p>I have a form with a stage that has a dynamic number of groups of fields, where the number is based upon answers in the previous stage.</p>
<p>I'm generating the fields server-side as an array, i.e.</p>
<pre><code><input id="foo[0]"...
<input id="bar[0]"...
<input id="foo[1]"...
<input id="bar[1]"...
<input id="foo[2]"...
<input id="bar[2]"... etc
</code></pre>
<p>No matter the number, all fields are required & I also need to validate against type & number of digits in some cases. I'm using the <a href="http://docs.jquery.com/Plugins/Validation" rel="nofollow">jQuery validate plugin</a> for client-side processing (yes, backed up with server-side stuff too) & the validation can't be done inline as the form needs to pass XHTML Strict (EDIT: see my addendum below).</p>
<p>My problem is that I can't work out how to use validate with a dynamic number of fields. Here's what the validate syntax typically looks like for the rest of the form:</p>
<pre><code>$(document).ready(function() {
// validate stage_form on keyup and submit
var validator = $("#form_id").validate({
// rules for field names
rules: {
name: "required",
address: "required",
age: { required: true, number: true }
},
// inline error messages for fields above
messages: {
name: "Please enter your name",
address: "Please enter your address",
age: { required: "Please enter your age", number: "Please enter a number" }
}
});
});
</code></pre>
http://stackoverflow.com/questions/1360354/jquery-plugin-for-making-a-slideshow-from-image-urls/1360396#13603961Answer by da5id for jquery plugin for making a slideshow from image urlsda5id2009-09-01T03:33:23Z2009-09-01T04:51:50Z<p>Dunno about keyboard navigation, but the answer I accepted to <a href="http://stackoverflow.com/questions/1221157/jquery-lightbox-or-equivalent-with-image-array">this similar question</a> should sort you out.</p>
<p>EDIT: Just realised it also includes keyboard navigation. See <a href="http://splendidprojects.com/" rel="nofollow">how I implemented it</a> for reference if you like (click the folio tab).</p>
http://stackoverflow.com/questions/1360429/how-to-delete-all-files-under-a-specified-directory-with-php/1360450#13604500Answer by da5id for How to delete all files under a specified directory with PHP?da5id2009-09-01T03:56:43Z2009-09-01T03:56:43Z<p>This function will remove recursively (like <code>rm -r</code>). Be careful!</p>
<pre><code>function rm_recursive($filepath)
{
if (is_dir($filepath) && !is_link($filepath))
{
if ($dh = opendir($filepath))
{
while (($sf = readdir($dh)) !== false)
{
if ($sf == '.' || $sf == '..')
{
continue;
}
if (!rm_recursive($filepath.'/'.$sf))
{
throw new Exception($filepath.'/'.$sf.' could not be deleted.');
}
}
closedir($dh);
}
return rmdir($filepath);
}
return unlink($filepath);
}
</code></pre>
http://stackoverflow.com/questions/1308949/what-wysiwyg-editing-component-should-i-use-for-in-browser-editing/1308987#13089870Answer by da5id for What WYSIWYG editing component should I use for in-browser editing?da5id2009-08-20T21:36:42Z2009-08-20T21:41:52Z<p>After much experimenting, I've settled on <a href="http://www.fckeditor.net/" rel="nofollow">fckeditor</a>. Good standards-support in output code, pretty easy implementation, jQuery integration, fully featured, very customisable, and not forgetting the winning feature: cleaning of <a href="http://stackoverflow.com/questions/379342/php-to-clean-up-pasted-microsoft-input">pasted Word crap</a>.</p>
http://stackoverflow.com/questions/1304049/how-to-send-a-secured-blast-email-to-thousands-users-in-php/1304078#13040784Answer by da5id for How to send a secured (blast) email to thousands users in php?da5id2009-08-20T05:10:38Z2009-08-20T05:10:38Z<p>The best method I've found for large lists is to use PEAR <a href="http://pear.php.net/package/Mail" rel="nofollow">Mail</a> in conjunction with <a href="http://pear.php.net/package/Mail%5FQueue/" rel="nofollow">Mail_Queue</a>. Essentially, the messages get queued for delivery (stored as records in a MySQL database) and then a cron job runs periodically throughout the night to send them in manageable batches (using php CLI).</p>
http://stackoverflow.com/questions/1241888/how-to-use-a-function-with-a-non-optional-argument-defined-as-the-third/1241905#12419050Answer by da5id for how to use a function with a non-optional argument defined as the thirdda5id2009-08-06T22:35:40Z2009-08-06T22:35:40Z<p>The easiest way is just to change the order of arguments so that $group is first.</p>
http://stackoverflow.com/questions/1221157/jquery-lightbox-or-equivalent-with-image-array1jQuery Lightbox or equivalent with image arrayda5id2009-08-03T08:06:53Z2009-08-03T10:03:50Z
<p>I'm trying to implement a <a href="http://leandrovieira.com/projects/jquery/lightbox/" rel="nofollow">Lightbox</a>-style gallery where clicking a text link launches a slideshow of images that are loaded from an array, not from inline content on the page. All the examples I can find use a group of inline images that are related somehow (i.e. using a rel tag or class). I want to define my images using their paths in a Javascript array.</p>
<p>Anyone know the solution or have any pointers? TIA.</p>
http://stackoverflow.com/questions/1067742/clean-source-code-files-of-invisible-characters/1067788#10677880Answer by da5id for Clean source code files of invisible charactersda5id2009-07-01T07:45:09Z2009-07-01T07:45:09Z<p>I'm pretty sure <a href="http://www.barebones.com/products/TextWrangler/" rel="nofollow">Textwrangler</a> will do it.</p>
<p>EDIT: <a href="http://www.versiontracker.com/dyn/moreinfo/macosx/18529" rel="nofollow">VersionTracker link</a> as Bare Bones site seems to be down again.</p>
http://stackoverflow.com/questions/1020943/jquery-validate-with-a-dynamic-number-of-fields/1055930#10559300Answer by da5id for jQuery validate with a dynamic number of fieldsda5id2009-06-28T22:31:12Z2009-06-28T22:31:12Z<p>No answers so I'll post my "interim" solution, which is to set inline validation rules for 'required' and 'type', leaving 'maxlength' to server-side checking, then display custom messages with an inline title tag. </p>
<p>This is probably good enough for the purposes of this job, but I'm still curious if there's a way to do it 'completely' within jQuery.</p>
http://stackoverflow.com/questions/680241/reset-form-with-jquery2Reset form with jQueryda5id2009-03-25T04:40:59Z2009-06-10T06:25:56Z
<p>I have a form with a standard reset button coded thusly:</p>
<pre><code><input type="reset" class="button standard" value="Clear" />
</code></pre>
<p>Trouble is, said form is of the multi-stage sort, so if a user fills out a stage & then returns later, the 'remembered' values for the various fields won't reset when the Clear button is clicked.</p>
<p>I'm thinking that attaching a jQuery function to loop over all the fields and clear them 'manually' would do the trick. I'm already using jQuery within the form, but am only just getting up to speed & so am not sure how to go about this, other than individually referencing each field by ID, which doesn't seem very efficient.</p>
<p>TIA for any help.</p>
http://stackoverflow.com/questions/973109/mailing-emailing-to-50-000-100-000-subscribers/973142#9731422Answer by da5id for Mailing Emailing to 50,000-100,000 subscribersda5id2009-06-10T00:19:15Z2009-06-10T01:06:45Z<p>Whilst I'm normally a big fan of Swiftmailer, I wouldn't necessarily recommend it for lists that large. I have a site which has been sending out member notifications of that magnitude for over a year now using PEAR <a href="http://pear.php.net/package/Mail" rel="nofollow">Mail</a> and <a href="http://pear.php.net/package/Mail%5FQueue/" rel="nofollow">Mail_Queue</a> without any issues.</p>
<p>Essentially, the messages get queued for delivery (stored as records in a MySQL database) and then a cron job runs periodically throughout the night to send them in manageable batches (using php CLI).</p>
<p>(<em>answering 2nd part of original question, <a href="http://stackoverflow.com/questions/973143/tracking-email-bounces-opens-clicks">since moved here</a></em>) As for tracking:</p>
<ul>
<li>I have no idea about bounces. </li>
<li>I believe the only way to track "opens" is to include an image file (within the email) from a server which you can then track requests for. I have no experience of this method, but have heard it's unreliable - plus there's the ethical questions it raises... </li>
<li>Probably the easiest way to track clicks would be to run them through your own server before redirecting to the URL in question. Again, ethics...</li>
</ul>
http://stackoverflow.com/questions/954160/php-how-to-interprete-a-website-into-multiple-languages/954227#9542271Answer by da5id for php how to interprete a website into multiple languages?da5id2009-06-05T04:01:52Z2009-06-05T04:10:07Z<ul>
<li>Content database (or file I guess)</li>
<li>Entry per page for each language</li>
<li>Language referenced by ID</li>
<li>ID set in $_SESSION variable</li>
<li>Optionally remembered in cookie for subsequent visits</li>
</ul>
<p>I've used this system with a custom CMS @ <a href="http://www.grandhall.eu" rel="nofollow">www.grandhall.eu</a>. It gets especially fun when you need to take things like brochures & other downloads into account.</p>
http://stackoverflow.com/questions/913769/is-there-extra-overhead-in-absolute-urls-for-includes0Is there extra overhead in absolute URLs for includes?da5id2009-05-27T03:13:55Z2009-05-27T03:21:14Z
<p>I have a situation where it looks like the easiest solution would be to convert from using relative to absolute paths for included files such as CSS & Javascript. There are around 10 included files in total per page - pretty much the same 10 on most pages.</p>
<p>I'm wondering if there would be any significant overhead (or indeed downside, other than portability) in doing so? This is a LAMP setup on a dedicated sever where everything is running over https.</p>
<p>EDIT: To clarify, I mean going from "../foo.css" to "https://bar.com/foo.css".</p>
http://stackoverflow.com/questions/913187/different-web-files-created-for-different-browsers/913211#9132110Answer by da5id for different web files created for different browsersda5id2009-05-26T23:04:59Z2009-05-26T23:11:06Z<p>It's because (for the most part and 'traditionally' even) CSS hackery was/is implemented by front-end developers, who don't always have access to back-end scripting. If web-development had been driven by back-end developers in the early days I've often thought that things would be very different.</p>
<p>I don't think this is a bad question at all by the way (it was initially voted down for some reason). And, for the record, conditional comments for CSS & a stable JS framework like jQuery are definitely the way to go.</p>
http://stackoverflow.com/questions/1810787/font-is-stuck-in-times-new-roman-in-ie/1810801#1810801Comment by da5id on font is STUCK in times new roman in ie. da5id2009-11-27T22:51:32Z2009-11-27T22:51:32Z...though you'd hope the submitter had tested on more than one computer already...http://stackoverflow.com/questions/1744747/achievements-badges-system/1744846#1744846Comment by da5id on Achievements / Badges systemda5id2009-11-18T03:58:55Z2009-11-18T03:58:55ZYes I agree. Like you, I have a "community" site that I put together single-handedly. It's something I've always meant to do, but have always had more pressing issues to take care of first.http://stackoverflow.com/questions/1744747/achievements-badges-system/1744846#1744846Comment by da5id on Achievements / Badges systemda5id2009-11-17T20:09:37Z2009-11-17T20:09:37ZIncidentally, I too have a site that I've been thinking of implementing "badges" on, so thanks for helping me think it through :)http://stackoverflow.com/questions/1744747/achievements-badges-systemComment by da5id on Achievements / Badges systemda5id2009-11-16T21:59:48Z2009-11-16T21:59:48Z...just remember to put indexes on the tables!http://stackoverflow.com/questions/1744747/achievements-badges-systemComment by da5id on Achievements / Badges systemda5id2009-11-16T21:57:48Z2009-11-16T21:57:48ZSorry, off to a meeting or I'd expand my answer, but basically the idea is to not have to worry about either: Every time a user submits something to the site you increment the Submissions_User table in my answer - immediately after that you run the "event listener" and award a badge if applicable.http://stackoverflow.com/questions/1744747/achievements-badges-systemComment by da5id on Achievements / Badges systemda5id2009-11-16T21:06:23Z2009-11-16T21:06:23Z@Fredrik, that's not what I meant, sorry for the confusion - see my answer below.http://stackoverflow.com/questions/1744747/achievements-badges-systemComment by da5id on Achievements / Badges systemda5id2009-11-16T20:56:25Z2009-11-16T20:56:25Zpedantically praps, but i think it quite clever :)http://stackoverflow.com/questions/1744747/achievements-badges-systemComment by da5id on Achievements / Badges systemda5id2009-11-16T20:54:27Z2009-11-16T20:54:27Z@Fredrik, agreed on "assigned", but "assigned_at" means you can track stuff like the 1,000,000 forum posts badge mentioned. He's basically tracking two kinds of badges in the one table.
http://stackoverflow.com/questions/1676308/css-two-columns-balanced-heights-with-preference-for-the-left-column/1676335#1676335Comment by da5id on CSS: Two columns, balanced heights with preference for the left columnda5id2009-11-04T20:22:34Z2009-11-04T20:22:34ZI'm pretty sure there no non-Javascript way to do it then. I hate to even say it, but <table>s always did a reasonable job at that kind of auto-content-fitting.http://stackoverflow.com/questions/566303/detect-internet-explorer-6-or-below-in-jquery/826952#826952Comment by da5id on Detect Internet Explorer 6 or below in jQueryda5id2009-10-30T05:02:02Z2009-10-30T05:02:02Z+1 'cos "Worrying about versions and platforms is pretty 1999" is about the most ridiculous thing I've heard today. Oh to live in that world :)http://stackoverflow.com/questions/1646916/disappearing-submit-button-in-ie7/1647095#1647095Comment by da5id on Disappearing submit button in IE7da5id2009-10-29T23:19:08Z2009-10-29T23:19:08ZThanks for the input & link, but that didn't do it either. I've finally fixed it & will post the answer.http://stackoverflow.com/questions/1646916/disappearing-submit-button-in-ie7/1646986#1646986Comment by da5id on Disappearing submit button in IE7da5id2009-10-29T22:33:46Z2009-10-29T22:33:46ZCheers, good thought, but sadly no :(http://stackoverflow.com/questions/1646916/disappearing-submit-button-in-ie7/1646929#1646929Comment by da5id on Disappearing submit button in IE7da5id2009-10-29T22:31:52Z2009-10-29T22:31:52ZI read this recently but hadn't made the connection 'til you mentioned it. It does sound like the same issue, which makes me think it's 'known' and there's a fix, but the TFA doesn't say what it is!http://stackoverflow.com/questions/1646916/disappearing-submit-button-in-ie7/1646937#1646937Comment by da5id on Disappearing submit button in IE7da5id2009-10-29T22:26:40Z2009-10-29T22:26:40ZHah, my first thoughts too, but unfortunately neither of these. I've even tried setting visibility explicitly to "visible". The issue is <i>only</i> in IE7.http://stackoverflow.com/questions/1515790/ckeditor-custom-select-menuComment by da5id on CKEditor custom select menuda5id2009-10-18T01:25:56Z2009-10-18T01:25:56ZI'm considering using it because of semantic XHTML goodness & paste from Word. I was thinking I would need to write something like this to make an image selector, so I'd be very curious too see if you fixed it?