<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Matthew Dawkins &#187; css</title>
	<atom:link href="http://www.matthewdawkins.co.uk/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matthewdawkins.co.uk</link>
	<description>Thanks for dropping by. Make yourself at home. Below is my blog. The links at the top will take you elsewhere. Enjoy!</description>
	<lastBuildDate>Mon, 02 Jan 2012 16:31:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>pShadow &#8211; a jQuery extension for gorgeous drop shadows</title>
		<link>http://www.matthewdawkins.co.uk/2011/10/pshadow-a-jquery-extension-for-gorgeous-drop-shadows/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pshadow-a-jquery-extension-for-gorgeous-drop-shadows</link>
		<comments>http://www.matthewdawkins.co.uk/2011/10/pshadow-a-jquery-extension-for-gorgeous-drop-shadows/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 20:54:54 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[drop shadow]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[shadow]]></category>

		<guid isPermaLink="false">http://www.matthewdawkins.co.uk/?p=1343</guid>
		<description><![CDATA[What&#8217;s pShadow? pShadow, short for &#8216;paper shadow&#8217;, is a jQuery extension that adds realistic drop shadows to HTML elements, which works in Internet Explorer (IE8, IE7, IE6 with some clever trickery), Firefox, Chrome, Safari, Opera, and any other modern browser you care to mention.  It&#8217;s free to download and use, and you can see an [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-1345" title="pShadow title" src="http://www.matthewdawkins.co.uk/wp-content/uploads/2011/10/Picture-6.jpg" alt="" width="484" height="137" /></p>
<h2>What&#8217;s pShadow?</h2>
<p><strong>pShadow</strong>, short for &#8216;paper shadow&#8217;, is <strong>a jQuery extension that adds realistic drop shadows to HTML elements</strong>, which works in Internet Explorer (IE8, IE7, IE6 with some clever trickery), Firefox, Chrome, Safari, Opera, and any other modern browser you care to mention.  It&#8217;s free to download and use, and you can see an example on the <a href="http://www.matthewdawkins.co.uk/pshadow/pshadow-demo.html" target="_blank">demo page</a>.</p>
<h2>Cut to the chase &#8211; how do I get it?</h2>
<p>Download <a href="http://www.matthewdawkins.co.uk/wp-content/uploads/2011/10/pShadow1.0.zip">pShadow1.0</a> and unzip it somewhere.  You&#8217;ll see pshadow.js and 2 png images, and I&#8217;ve included the jQuery script too (but feel free to download it fresh from the <a href="http://jquery.com" target="_blank">jQuery site</a> if you prefer).</p>
<p>In the &lt;head&gt; section of your HTML file, add the following lines:</p>
<pre>&lt;script type="text/javascript" src="jquery.1.x.x.min.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="pshadow.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
$(document).ready(function() {
    $('.someElement').pShadow();
});</pre>
<p>Now all elements in your markup with the class .someElement will have a lovely drop shadow!</p>
<h2>The options</h2>
<p>There is more than one way to skin a cat.  By the same token, there is more than one way to use pShadow.  Below are some options you can set.</p>
<p>There are 2 built-in shadow types, using one of the 2 .png images bundled in the zip.  Choose which one you want to use by setting the type parameter to either &#8216;corners&#8217; (default) or &#8216;middle&#8217;.  See the <a href="http://www.matthewdawkins.co.uk/pshadow/pshadow-demo.html" target="_blank">demo page</a> to see the difference.</p>
<pre>$('#element').pShadow({type: 'corners'});</pre>
<p>You can set how deep the shadow is, i.e. the vertical height of it, by setting the depth parameter to a number (assumes pixels).</p>
<pre>$('#element').pShadow({depth: 30});</pre>
<p>You can vary the strength (i.e. the darkness) of the shadow by setting the strength parameter to a value from 1 to about 5.  See the technical stuff below for an explanation of what those numbers mean, but 1 is lightest and 5 is probably the highest you&#8217;ll need to go.</p>
<pre>$('#element').pShadow({strength: 2});</pre>
<p>And of course you can combine those options into one array, and even chain other functions on afterwards.</p>
<pre>$('#element').pShadow({
    type: 'corners',
    depth: 10,
    strength: 2
}).css('background','blue');</pre>
<h2>How it works</h2>
<p>Okay, here&#8217;s the more technical low-down on how this all works, and what makes it so special.</p>
<p>We all know that modern browsers (apart from IE anyway) support the lovely CSS3 box-shadow property.  But there are times when we need to cater for IE too, and sometimes a simple box-shadow just doesn&#8217;t cut the mustard.  The pShadow jQuery extension does what all great performers do &#8211; it masters the art of illusion.</p>
<p>The shadow itself is actually a .png image, carefully designed to sit on the bottom edge of an element and give impression of depth and shadow, as if the element was a piece of paper sitting on your screen.  No shadows are needed on the other edges, because the bottom shadow does all the work for you.  Your eyes do the rest and turn it into a 3-dimensional object.</p>
<p style="text-align: center;"><a href="http://www.matthewdawkins.co.uk/wp-content/uploads/2011/10/shadow1.png"><img class="alignnone size-medium wp-image-1346" title="shadow1" src="http://www.matthewdawkins.co.uk/wp-content/uploads/2011/10/shadow1-300x24.png" alt="" width="300" height="24" /></a></p>
<p>pShadow uses jQuery to take (nearly) any element, or set of elements, and dynamically adds the .png image to it, positioning it carefully so that it lines up with the bottom edge of the element.  In the case of self-closing elements like &lt;img /&gt;, pShadow adds the shadow element immediately following it in the markup, and positions it absolutely to the target element&#8217;s position on the screen.  In the case of non-self-closing elements like &lt;div&gt;&lt;/div&gt; the shadow is added inside it and then positioned relative to the parent.  Then it scales the width of the image to match the target object.  And, to my knowledge, that can&#8217;t all be done purely with CSS.</p>
<p>The darkness of the shadow (known in the code as the &#8216;strength&#8217;) is a quick and dirty approach but generally works well.  There is still only one .png image, but if you layer them on top of each other it gets progressively darker.  If you leave the parameter to its default setting, or set it to 1, it will place just one copy of the shadow under the element.  If you set it to 3, you&#8217;ll effectively get 3 shadows stacked on top of each other, making it darker.  By my reckoning the scale can sensibly go up to about 5, although there is technically no limit.  And if you want more control you can create your own shadow image that&#8217;s really really light and stack loads of them on top of each other, if you really want to&#8230;</p>
<h2>Limitations</h2>
<p>No, it&#8217;s not perfect.  Yes, you can break it.  No, I can&#8217;t guarantee to be able to fix every issue you have with it.  Here are some things I&#8217;m already aware of:</p>
<ul>
<li>PNG images are not totally supported in IE6, because it forgets to take transparency into account.  However, there are a number of ways to force IE6 to do transparency, so do a Google search for &#8220;IE6 transparency&#8221; and use any of the solutions there!</li>
<li>If you apply a shadow to a self-closing element like an image, and then move the position of that element, the shadow won&#8217;t follow it.  Because the shadow is positioned absolutely to where the target element was relative to the page, if you then move the target element the position of the shadow would need to be updated too.  That&#8217;s beyond the scope of pShadow at the moment.</li>
<li>If you have CSS targeting images, there&#8217;s a possibility that you might affect the shadow elements too.  I&#8217;ve tried to cancel out some typical CSS parameters, but it&#8217;s no silver bullet, so beware.</li>
<li>pShadow doesn&#8217;t take into account rounded corners, so if you&#8217;re using a hefty rounded corner on an element then the shadow might look a little odd.  Tough luck, I&#8217;m afraid.</li>
<li>Also, pShadow doesn&#8217;t currently handle nested pShadowed elements perfectly.  Hopefully that&#8217;s something I&#8217;ll find a fix for though!</li>
</ul>
<h2>Frequently Asked Questions (or at least questions that I imagine might be asked frequently)</h2>
<h3>Is pShadow free?</h3>
<p>Yes.  It is.  And always will be.</p>
<h3>Do I have to use jQuery?</h3>
<p>Yes.  Technically you could achieve it all in raw Javascript, but it wouldn&#8217;t be as elegant, nor anywhere near as easy to use.  And I have no plans to convert it to use any other Javascript framework.</p>
<h3>Can I apply pShadow to any element?</h3>
<p>Yes.  But I can&#8217;t guarantee it&#8217;ll work in every case.  It&#8217;ll definitely work for &lt;div&gt;, &lt;p&gt;, &lt;h1&gt; etc, &lt;img&gt;, and any other element that a browser will treat as if it&#8217;s a block element like &lt;div&gt;.  It won&#8217;t work quite right with &lt;input&gt;, &lt;textarea&gt;, &lt;button&gt; yet, but that might come later.  And I&#8217;m sure you&#8217;ll all tell me if other elements don&#8217;t work either.</p>
<h3>Can I use pShadow?</h3>
<p>Yes.  You can use it on your personal blog.  You can use it on your company website.  You can use it on your corporate intranet.  You can use it in your web application.</p>
<p>However, you can&#8217;t use it on your oven.  Or your car.  Or your girlfriend.  Or your sense of pride.  Or the sunset.</p>
<h3>What happens if I have a problem with pShadow?</h3>
<p>Leave a comment below and I&#8217;ll see what I can do to help.  Unfortunately I have a 9 to 5 job to attend to, so I can&#8217;t provide unlimited tailored support, and you can&#8217;t employ my services either, even for money.</p>
<h3>When is the next version of pShadow due?</h3>
<p>It&#8217;s not.  Not as such.  This is a little personal project of mine, initially knocked up in an afternoon.  I hope to find time to tweak it as necessary, as and when people point out critical failures, but there is no roadmap for development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewdawkins.co.uk/2011/10/pshadow-a-jquery-extension-for-gorgeous-drop-shadows/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Keeping track of time</title>
		<link>http://www.matthewdawkins.co.uk/2008/06/keeping-track-of-time/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=keeping-track-of-time</link>
		<comments>http://www.matthewdawkins.co.uk/2008/06/keeping-track-of-time/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 21:14:11 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[mWork]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.minipix.co.uk/wordpress/?p=514</guid>
		<description><![CDATA[Running your own business means a lot of extra effort, relative to a &#8216;normal&#8217; job.  True, there are the benefits of being your own boss, working the hours that suit you, taking holidays when you fancy, setting the prices you like.  But in addition to being a Web Designer I also have to handle the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/picture-2.png"></a></p>
<p><img class="alignright size-full wp-image-515" style="float: right;" title="picture-1" src="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/picture-1.png" alt="mWork logo" width="332" height="127" />Running your own business means a lot of extra effort, relative to a &#8216;normal&#8217; job.  True, there are the benefits of being your own boss, working the hours that suit you, taking holidays when you fancy, setting the prices you like.  But in addition to being a Web Designer I also have to handle the accounts, pay the tax man, and do all the boring day-to-day stuff that proper businesses would palm onto someone else.  Thankfully, because my business is relatively small and simple, this doesn&#8217;t take too much effort.  Mr Tax Man doesn&#8217;t bother me unduly, and the general running of the business tends to just happen.</p>
<p>Of course, there are ways of making life easier for myself on the business side of things.  For instance, keeping track of the business&#8217;s money is something I&#8217;m keen to do, since numbers are not my strong point, so having a system in place that makes it all blindingly obvious is a must.  So far I&#8217;ve been relying on spreadsheets to log the work I do, with a different spreadsheet for each client.  It works, but it&#8217;s not particularly efficient.  I&#8217;ve looked around on the &#8216;net, and not found anything that fits my requirements exactly, so I decided I&#8217;d make my own.  Nothing like reinventing the wheel every now and then, just for kicks.</p>
<p>And so mWork was born.</p>
<p><span id="more-514"></span>I did look into making a mammoth super spreadsheet, with each client having its own sheet, and a summary sheet that brought it all together, but the more I played with it the more I felt it really needed the power of a database.  So I started fumbling around with the database app that comes with <a href="http://www.neooffice.org/">NeoOffice</a> (the Mac version of OpenOffice, a free office suite like MS Office).  Unfortunately, the more I fumbled the more confused I became, and the more I hated the software.  Then it occurred to me &#8211; I could create this sort of thing really easily in PHP and MySQL.  So I did.</p>
<p>Rather than hosting it all online, where any old cracker could potentially get at all my data, I&#8217;ve kept it on my local computer.  There&#8217;s a lot of PHP, some clever CSS, a relational database handled by MySQL, and so far quite a lot of hours of work creating the thing.  I&#8217;m already using it, though at the moment in parallel with the old system, just in case.  The beauty of it is that if I find I&#8217;m missing a feature, I put it in.  If certain information is important, I make it more obvious.  If the data isn&#8217;t very useful, I find another way of using it.</p>
<p>One particular area I&#8217;m quite pleased with is the various bar graphs I&#8217;ve used, with some funky PHP and CSS.  You&#8217;ll see from the screenshots just how beautiful they are.  For each project there&#8217;s a bar graph showing three bars: one for the amount I estimated for the project, one for the amount I&#8217;ve earned through the work I&#8217;ve done so far, and one for the amount paid so far by the client.  Putting these side by side visually really helps to get a quick overview of how far through the project we are and to keep tabs on projects that might overrun; if I go over the estimate the middle bar turns red.</p>
<p style="text-align: center;"><a href="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/picture-2.png"><img class="alignnone size-thumbnail wp-image-516" title="picture-2" src="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/picture-2-150x150.png" alt="mWork project progress" width="150" height="150" /></a> <a href="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/picture-3.png"><img class="alignnone size-thumbnail wp-image-517" title="picture-3" src="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/picture-3-150x150.png" alt="mWork monthly report" width="150" height="150" /> </a><a href="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/picture-4.png"><img class="alignnone size-thumbnail wp-image-518" title="picture-4" src="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/picture-4-150x150.png" alt="mWork yearly report" width="150" height="150" /></a></p>
<p>There are similar graphs for the monthly and yearly reports, which show the activity throughout the month or year in question.  The yearly report shows hours worked, amount earned and amount received side by side, giving a nice (if colourful) progress report.  <a href="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/project-detail.jpg"><img class="alignright size-medium wp-image-520" style="float: right;" title="project-detail" src="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/06/project-detail-248x300.jpg" alt="mWork project detail" width="248" height="300" /></a>At the moment the yearly report works on a Jan-Dec year, but I suppose actually a more useful measure would be the tax year, as I could then use that information directly to plug into my Tax Return Form.</p>
<p>In addition to all that fun visual stuff there are tools for adding projects, updating project information, adding work logs, adding expenses that will be passed on to the client, logging payments made by the client, and so on.</p>
<p>There is still work to be done before it&#8217;s finished, naturally.  But at the moment it&#8217;s fairly solid and seems to be working well.  I don&#8217;t think it&#8217;s the sort of thing I would make available to the general public though &#8211; it&#8217;s tailored specifically to my needs, and might not suit everyone else.  Besides anything else, I&#8217;ve spent so long developing it that I would want to charge people to use it, but that involves taking money from people and I&#8217;m not so hot on that!  You can tell I&#8217;m not a businessman&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewdawkins.co.uk/2008/06/keeping-track-of-time/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Missing media buttons in WP 2.5 &#8211; partial fix!</title>
		<link>http://www.matthewdawkins.co.uk/2008/04/missing-media-buttons-in-wp-25-partial-fix/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=missing-media-buttons-in-wp-25-partial-fix</link>
		<comments>http://www.matthewdawkins.co.uk/2008/04/missing-media-buttons-in-wp-25-partial-fix/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 14:58:22 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.minipix.co.uk/wordpress/?p=439</guid>
		<description><![CDATA[I&#8217;ve been hovering on the WordPress forums recently, keeping my eyes peeled for a solution to my missing media buttons following up my upgrade to WordPress 2.5 a week or so ago. Today, prompted by a post by jeenie involving looking at the source code, I had a poke around and managed to get half [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/04/media-buttons.jpg"><img class="alignright size-thumbnail wp-image-440" style="float: right;" title="media buttons missing" src="http://www.minipix.co.uk/wordpress/wp-content/uploads/2008/04/media-buttons-150x150.jpg" alt="" width="150" height="150" /></a>I&#8217;ve been hovering on the WordPress forums recently, keeping my eyes peeled for a solution to my missing media buttons following up my upgrade to WordPress 2.5 a week or so ago.  Today, prompted by <a href="http://wordpress.org/support/topic/164764">a post by jeenie</a> involving looking at the source code, I had a poke around and managed to get half way there.  As you can see from the attached screenshot (which proves it all works!!), I can now access the functionality, even though the images still don&#8217;t show.  It&#8217;s a curious thing, given that it looks like a fairly simple bit of code that oughtn&#8217;t to have any problems at all.</p>
<p><span id="more-439"></span>The code for this bit looks like this:</p>
<pre>&lt;<span class="start-tag">div</span><span class="attribute-name"> id</span>=<span class="attribute-value">"media-buttons" </span><span class="attribute-name">class</span>=<span class="attribute-value">"hide-if-no-js"</span>&gt;</pre>
<pre>Add media:</pre>
<pre>&lt;<span class="start-tag">a</span><span class="attribute-name"> href</span>=<span class="attribute-value">"media-upload.php?post_id=439&amp;type=image&amp;TB_iframe=true&amp;height=500&amp;width=640" </span><span class="attribute-name">class</span>=<span class="attribute-value">"thickbox" </span><span class="attribute-name">title</span>=<span class="attribute-value">'Add an Image'</span>&gt;&lt;<span class="start-tag">img</span><span class="attribute-name"> src</span>=<span class="attribute-value">'images/media-button-image.gif' </span><span class="attribute-name">alt</span>=<span class="attribute-value">'Add an Image' </span><span class="error"><span class="attribute-name">/</span></span>&gt;&lt;/<span class="end-tag">a</span>&gt;</pre>
<pre>&lt;<span class="start-tag">a</span><span class="attribute-name"> href</span>=<span class="attribute-value">"media-upload.php?post_id=439&amp;type=video&amp;TB_iframe=true&amp;height=500&amp;width=640" </span><span class="attribute-name">class</span>=<span class="attribute-value">"thickbox" </span><span class="attribute-name">title</span>=<span class="attribute-value">'Add Video'</span>&gt;&lt;<span class="start-tag">img</span><span class="attribute-name"> src</span>=<span class="attribute-value">'images/media-button-video.gif' </span><span class="attribute-name">alt</span>=<span class="attribute-value">'Add Video' </span><span class="error"><span class="attribute-name">/</span></span>&gt;&lt;/<span class="end-tag">a</span>&gt;</pre>
<pre>&lt;<span class="start-tag">a</span><span class="attribute-name"> href</span>=<span class="attribute-value">"media-upload.php?post_id=439&amp;type=audio&amp;TB_iframe=true&amp;height=500&amp;width=640" </span><span class="attribute-name">class</span>=<span class="attribute-value">"thickbox" </span><span class="attribute-name">title</span>=<span class="attribute-value">'Add Audio'</span>&gt;&lt;<span class="start-tag">img</span><span class="attribute-name"> src</span>=<span class="attribute-value">'images/media-button-music.gif' </span><span class="attribute-name">alt</span>=<span class="attribute-value">'Add Audio' </span><span class="error"><span class="attribute-name">/</span></span>&gt;&lt;/<span class="end-tag">a</span>&gt;</pre>
<pre>&lt;<span class="start-tag">a</span><span class="attribute-name"> href</span>=<span class="attribute-value">"media-upload.php?post_id=439&amp;TB_iframe=true&amp;height=500&amp;width=640" </span><span class="attribute-name">class</span>=<span class="attribute-value">"thickbox" </span><span class="attribute-name">title</span>=<span class="attribute-value">'Add Media'</span>&gt;&lt;<span class="start-tag">img</span><span class="attribute-name"> src</span>=<span class="attribute-value">'images/media-button-other.gif' </span><span class="attribute-name">alt</span>=<span class="attribute-value">'Add Media' </span><span class="error"><span class="attribute-name">/</span></span>&gt;&lt;/<span class="end-tag">a</span>&gt;</pre>
<pre>&lt;/<span class="end-tag">div</span>&gt;</pre>
<p style="padding-left: 30px;">
<p>I&#8217;ll quickly explain what this does: everything is contained within a DIV, with a unique id &#8220;media-buttons&#8221; and a class &#8220;hide-if-no-js&#8221;.  The one that really stuck out for me was the class, and a quick look in the CSS revealed that the class &#8220;hide-if-no-js&#8221; did exactly what you&#8217;d expect &#8211; it hid everything inside it.  I simply commented out that line in the CSS file, and found that the links suddenly worked!</p>
<p>If you want to try this yourself (if you&#8217;re having the same trouble as me), the file you want to look at is &#8230;/wp-admin/wp-admin.css, and the offending item is right down at the bottom of the file, and looks like this:</p>
<pre>.hide-if-no-js {</pre>
<pre>  display: none;</pre>
<pre>}</pre>
<p>Now, this is only a partial fix, as although I can click on the links and access the functionality behind them, the icons for those buttons still don&#8217;t appear.  I&#8217;ve checked, and the image files themselves are definitely there.  I&#8217;ve even manually edited the HTML using a bookmarklet to temporarily remove the link around the image, and then it displays perfectly, just without the link and hence without the functionality associated with it.</p>
<p>So I had a look at the link, to see if that&#8217;s where the problem lay.  Sadly, that yielded nothing of use; the #media-buttons CSS had nothing relevant, neither did the .thickbox in the link.  So I&#8217;m at a loss again.  For now.</p>
<p>Still, at least I&#8217;ve got the functionality working now, that&#8217;s a significant improvement.  Unfortunately it hasn&#8217;t resolved the problems I&#8217;m also having with the Add Link buttons, which give me a blank popup.  Ah well, I&#8217;ll just have to investigate further, or make do with the HTML editor.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewdawkins.co.uk/2008/04/missing-media-buttons-in-wp-25-partial-fix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

