Eric Daams
Forum Replies Created
-
Forum: Your WordPress
In reply to: A modern overhaul of the blog..on wordpressI like the Getting Started button in the middle of the header; it’s the first thing my eye was drawn towards.
Around the post titles, it feels a bit crowded. Perhaps use smaller text or lighter shades of grey for the less important bits, or leave more padding — as it is, it feels like the title of the post is getting swamped with other things vying for my attention.
Forum: Everything else WordPress
In reply to: WordPress or WordPress MU?Yeah, I think WordPress MU would probably be overkill for what you’re trying to achieve; MU is really for if multiple users need to be able to set up fully-functioning blogs.
Forum: Fixing WordPress
In reply to: left sidebar links aren’t clickable after change urlIt’s a CSS problem. In your style.css, find
#container { width:1000px; float:left; margin:1em 0 0 0px; position:relative; }And remove
position:relative;That should fix it.
Eric
Forum: Plugins
In reply to: User file upload plungins?Anyone wondering how to do this, you can achieve it by pasting this code into your functions.php:
if ( current_user_can('contributor') && !current_user_can('upload_files') ) add_action('admin_init', 'allow_contributor_uploads'); function allow_contributor_uploads() { $contributor = get_role('contributor'); $contributor->add_cap('upload_files'); }From http://www.wprecipes.com/wordpress-tip-allow-contributors-to-upload-files
Forum: Your WordPress
In reply to: Recommend pllugins for new websiteHi Cubes,
Welcome to the world of WordPress:)
1. In your blog’s admin area, go to Settings > General and tick ‘Anyone can register’; then go to Settings > Discussion and tick ‘Users must be registered and logged in to comment’
2. I use Contact Form 7 to make contact forms. Free and easy.
3. WPRecipes posted some code for how to enable this: http://www.wprecipes.com/wordpress-tip-allow-contributors-to-upload-files
Look out for is
current_user_can('contributor')in that piece of code. The contributor bit means that only registered users who are classed as Contributors will be allowed to upload files; it still won’t allow Subscribers (the base level) to upload files, and for security reasons I don’t think you would want to allow that.Hope that helps.
Cheers,
EricForum: Your WordPress
In reply to: Search Engine Optimization in WordPressCongratulations on hitting #1 for your keyword. Of course, now that you’ve posted about it on WordPress.org, it appears that the codex is now #1:)
I guess the next step is to figure out which other keywords you want to rank for. And start building more and more links into your site.
Forum: Your WordPress
In reply to: webwhitenoise.comYeah, I have to second Dan_85’s sentiments… A static grainy textured background would express the same thing without hurting the eyes. That background really doesn’t make me want to hang around.
Forum: Your WordPress
In reply to: Added a custom 404 page to work siteWell it made me chuckle:)
Forum: Your WordPress
In reply to: Girls soccer team website – any comments?Yeah, Thesis is a nice fit, especially with the content in the centre. Keep using lots of photos, as they add a lot of life and colour to the page.
I’d be careful about the “Raise money for the team!” bit above the Google ads though — Google has been known to cancel people’s accounts for encouraging clicks too much.
Forum: Your WordPress
In reply to: Blog for daughter – what do you think?Hi Snowfur’s mom:)
That’s a really cool idea. I think it’s great to give your daughter an outlet where she can express herself and practice her writing. Perhaps to encourage her, ask a few of your family members and friends to comment on some of her posts — if I get a kick out of a comment on my blog, I’m sure your daughter is bound to!
Forum: Everything else WordPress
In reply to: Advice on link exchangesThe thing with link exchanges these days is that they aren’t quite as effective as they used to be, simply because Google discounts the value of a link when it can detect that it’s part of an exchange. The more one-way links you have pointing into your website, the better.
My main blog is called Tea Finely Brewed, which is in the rather small niche of tea blogs. I managed to set up quite a few reciprocal blogroll links, but one of the things I’ve also found effective is to ask people who’ve linked to you before to link to a new piece you’ve written. Or if you know someone in the same niche or a related niche, ask them if they can link to one of your posts that’s relevant to them and their audience.
Forum: Your WordPress
In reply to: Personal blog – http://josh-r.co.ccHow did you try adding whitespace? You should be able to use padding rules in your stylesheet to create whitespace.
Forum: Fixing WordPress
In reply to: Unlink this blog from my accountI’m not sure what that screenshot is of, but if you mean you want to remove that url from your WordPress.org profile, you can do so here: http://wordpress.org/support/profile/6047014/edit
Forum: Everything else WordPress
In reply to: Application for managing WordPress blogsAh, if only it was for Mac as well:)
Forum: Fixing WordPress
In reply to: are banner ads plugins?A banner ad is just an image/graphic that is usually linked to the website it’s advertising. You don’t need a particular type of theme to run it, though your theme will have an impact on which banner sizes you can show (ie. if your sidebar is 250 px wide, you can’t run a 300px wide banner in your sidebar — well you could but it would look pretty crap).
I use AdRotate to run banner ads. It comes with a widget you can use in your sidebar.