simple1
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts in pagesCan you post a link to your site so we can take a look?
Forum: Plugins
In reply to: [Contact Form 7] Translate "Choose File" ButtonThis post might shed some light to your question. http://wordpress.org/support/topic/contact-form-7-change-browse-button-text?replies=5
There doesn’t seem to be an easy way to do this. However, if you’re going to insert the contact details under the logo anyway, an easier way is to do this is to add them to the tagline field. Go to Themes > Attitude > Customize.
Forum: Plugins
In reply to: [prettyPhoto Media] Getting Rid of pp_navI see the style in line 23 of prettyPhoto.css. You can set display to none there.
Forum: Fixing WordPress
In reply to: Adding a favicon to url address barWhy did you change the code? Have you seen the reference on installing a favicon? http://codex.wordpress.org/Creating_a_Favicon
Forum: Themes and Templates
In reply to: Post excerpts missing on home pageThe excerpt field is within your posts. I think the column code is causing the excerpt from being created automatically, so you have to copy the first few lines of your post into the Excerpt field.
Try this: Open one of your posts. Click on the Screen Options tab at the top of the page. Make sure Excerpt is ticked. You should see the Excerpt field under the Text Editor window. Type or paste your excerpt there.
Forum: Themes and Templates
In reply to: [Attitude] Remove hyperlink on page titlesHmmm, I’m not sure why it’s not working. I tested it out and I was able to disable the hyperlinks. I referred to this page (sections on Overriding Templates and Overriding Functions) http://ottopress.com/2010/wordpress-protip-child-themes/
The setting in Screen Options is only for controlling admin view within a post. If you scroll down past the text editor you’ll see the Discussion field. Untick “Allow comments.”
Forum: Themes and Templates
In reply to: [Attitude] Remove hyperlink on page titlesThat’s good practice to work with a child theme. Sometimes I forget to do that.
I finally figured out that you have to override the format functions through your child theme. Paste the relevant format functions from content-extensions.php into an empty function.php file (with opening and closing PHP tags) and save it in your child theme. In your case, it would be lines 95 to 670. Make your hyperlink edits. It should override the parent functions.
Forum: Themes and Templates
In reply to: Post excerpts missing on home pageAre you placing your excerpt in the Excerpt field?
Did you uncheck the option “Allow people to post comments on new articles” after you created the posts? If so, the setting will apply to future posts you create. But you’ll need to uncheck “Allow comments” within each individual post you created before updating the option.
Forum: Themes and Templates
In reply to: Theme Twenty Eleven – searchIt helps to know some CSS to work with positioning of elements. http://codex.wordpress.org/CSS
If you’re experimenting with CSS on your site it’s a good idea to install the Custom CSS Manager so you don’t mess with the original files. http://wordpress.org/extend/plugins/custom-css-manager-plugin/
To reposition the search box try adding this to your site’s CSS through the Manager:
#branding #searchform {
position: relative;
float: right;
}Forum: Themes and Templates
In reply to: [Whispy] Submenu background color doesn't displayGood idea about the Custom CSS Manager, Andrew.
Forum: Themes and Templates
In reply to: [Theme: Pilot Fish] Creating Div-Like SectionsIt sounds like you want to create columns. Then you can insert your divs into the columns. If you search for way to create columns you’ll find references like this: http://wpmu.org/daily-tip-add-columns-to-wordpress-posts-without-a-shortcode/
Forum: Themes and Templates
In reply to: [Magazine Basic] Featured Image on Front Page being resizedLooks like you were able to fix the problem, no?