Triplanetary
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: A Weird One: Background Color UNeditable!Add !important to the end of the “background” property for the author box in your plugin’s CSS sheet. I just tried it in my browser and it worked.
Just to be clear what I mean, the background property should look like this:
background: none repeat scroll 0 0 #F2F7FC !important;Forum: Themes and Templates
In reply to: fluid width content areaTry giving #primary a max-width rather than a width.
Forum: Fixing WordPress
In reply to: Do_Shortcode with embed code not workingThis doesn’t really answer your question, but have you considered simply using the generic YouTube iframe code rather than the embed shortcode?
Forum: Plugins
In reply to: Twitter sharingForum: Fixing WordPress
In reply to: line spacing in body textWhy are you using the space bar to create line breaks? If you want to force a line break, press SHIFT-ENTER in visual mode, or insert a
<br />tag in HTML mode.Forum: Fixing WordPress
In reply to: Menu to a pluginForum: Fixing WordPress
In reply to: How can you retieve a username and passwordDo you have FTP access to the site?
The first thing I would try is clearing your browser’s cache and then reloading the page again.
Forum: Themes and Templates
In reply to: Production site looks larger than test siteI think I see the problem. There’s a <style> tag in your site’s HTML that’s overriding some of the styling in your CSS sheet. It looks like it was put there by Google Fonts.
Here’s what I’m talking about; it’s from your site’s <head> section:
<!-- Google Fonts --> <link href='http://fonts.googleapis.com/css?family=Metrophobic' rel='stylesheet' type='text/css' /><link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css' /> <style type="text/css" media="screen"> #access a { font-family: 'Ubuntu', serif; font-size: 28px; font-style: normal; font-weight: 500; text-shadow: none; text-decoration: none; text-transform: none; letter-spacing: 0em; word-spacing: 0em; line-height: 1.2; } #front-page-box { font-family: 'Metrophobic', serif; font-size: 18px; font-style: normal; font-weight: 500; text-shadow: none; text-decoration: none; text-transform: none; letter-spacing: 0em; word-spacing: 0em; line-height: 1.2; } </style> <!-- fonts delivered by WordPress Google Fonts, a plugin by Adrian3.com -->Forum: Themes and Templates
In reply to: [Twenty Eleven] Twenty Eleven "Custom Fields"You can stop it from appearing on the editor screen using the “Screen Options” tab at the top right of the edit post/page page.
Forum: Fixing WordPress
In reply to: Shouldn't comment notification emails be sent to the blog author?For security reasons, WP’s core email functionality will only send emails to the address you put in the settings. By default at least.
There are plugins you can use to achieve the effect you’re looking for. http://ww.wp.xz.cn/extend/plugins/email-alerts/
Forum: Themes and Templates
In reply to: Left and Right aligned menusIf you style the second menu with float: right, it should work fine.
Forum: Themes and Templates
In reply to: Manage Themes – 3.2 new install – Child theme not showingWordPress 3.2 doesn’t include Twenty Ten, so child themes of Twenty Ten aren’t going to work.
The reason they work on your other WP installs is because you upgraded those to 3.2, so the Twenty Ten theme was still there from previous versions. But if you do a fresh install of 3.2, there won’t be a Twenty Ten. The new default theme is Twenty Eleven.
If you want to use Twenty Ten child themes with your fresh 3.2 install, just install Twenty Ten manually: http://ww.wp.xz.cn/extend/themes/twentyten
Forum: Themes and Templates
In reply to: Modify duster to looks like twenty elevenWhy not just use Twenty Eleven?
Forum: Fixing WordPress
In reply to: Odd things missing since 3.2 upgradeTry going to your network admin manually by typing [your-blog-root]/wp-admin/network
If that works, go to the Update Network page and run that, see if that fixes things.