lettergrade
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can You Call A Function Inside Content Area of a PageYou can use a plugin like Allow PHP in Posts and Pages or keep it separate by using something like PHP Snippets. I used the former once and it worked fine but threw some error messages here and there in the admin.
Forum: Installing WordPress
In reply to: Trouble importing from Blogger – gets stuckNot sure, but sounds likely. You can post in the wordpress.com support forums to ask them for help.
Do you get any error messages besides the ‘failed to import’ ones?
Often, it’s a memory allowance issue. A few options!
You may need to increase your memory limit for php, which will require editing your wp-config.php file on your hosting server.
You could also talk to your hosting provider about lifting any memory limits temporarily so that the import can be completed.
I’ve read that you can split up the xml file so it can be imported in a few tries.Forum: Themes and Templates
In reply to: [Stitch] Changing color of sidebar/mastheadIt’s going all the way to the bottom of the page for me. Which browsers have you viewed it in?
Forum: Fixing WordPress
In reply to: htaccess file in wp-admin folder issueNope, it’s not php. Here’s a bit more information: .htaccess
Forum: Themes and Templates
In reply to: [Klasik] Klasik Theme Post/Page TitleNo problem, you too!
Forum: Themes and Templates
In reply to: [Klasik] Klasik Theme Post/Page TitleFound it! It’s in one of the extra css files that comes in klasik. It’s on line 21 of the file color.css, and it looks like this:
.pagetitle{color:#444444;}Forum: Themes and Templates
In reply to: [Klasik] Klasik Theme Post/Page TitleI think the same selector exists in two places in your styles (line 350 and line 549, according to Firebug), and one is overwriting the other. Take a look around for the second one?
Forum: Themes and Templates
In reply to: [Klasik] Klasik Theme Post/Page TitleSure, but it’s just a style attribute so you would change the code I gave you in your css stylesheet. For instance, if you wanted the text to be white, you would go to your css stylesheet, find the .pagetitle attribute and change it like this:
.pagetitle { color: #ffffff; }Forum: Themes and Templates
In reply to: [Klasik] Klasik Theme Post/Page TitleSure, currently it’s the following:
.pagetitle { color: #444444; }Try changing that color value to the one you want!
Have you tried Firebug? It’s a really easy tool in the Firefox browser that makes it simple to find the attributes on elements on any page. Here’s a tutorial, if you’re interested: Inspecting WordPress with Firebug
Forum: Themes and Templates
In reply to: Multiple Static Pages with Dynamic ContentAbsolutely. Good luck with your improvement campaign 🙂
Forum: Fixing WordPress
In reply to: Search not workingAwesome. Here’s some more information about how you can modify the default output for the_excerpt(): Excerpt
Forum: Fixing WordPress
In reply to: Preview Changes Not workingThe resolutions I could find online seem to point to a difference in the format of the WordPress address as opposed to the site address. Check these out, maybe?
http://wordpress.org/support/topic/you-do-not-have-permission-to-preview-drafts-2?replies=6
http://www.tristanb.com/wordpress-preview-drafts-permission-error/Forum: Themes and Templates
In reply to: Zeecorporate theme post font sizeFantastic, glad it’s working out.
Forum: Fixing WordPress
In reply to: trouble with child themesGreat, glad to hear you’re all good.
The ‘security’ you get from a child theme isn’t server-related. It means that when the parent theme is updated by the theme developer, you can update it without overwriting all the great changes you made to customize your own site. The changes still live in the files you added to your child theme, but the main theme files get updated with the parent. It simplifies things.
Forum: Fixing WordPress
In reply to: Preview Changes Not workingHave you cleared your cache and restarted your browser? Maybe tried a different browser? Have you changed anything else lately?