Michelle Langston
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Change Text Font Size on Pages?Awesome!
Forum: Themes and Templates
In reply to: Image overlapping in Manifest Theme editI suggest that instead of slicing the background image up into multiple pieces, create a wrapper div around all the content and make the background of that wrapper div be the entire image, unsliced.
Forum: Themes and Templates
In reply to: Twenty Ten Next/Previous LinksThis tutorial has a lot of good ideas:
Forum: Themes and Templates
In reply to: Clickable header in Mystique themeLooks like the actual logo is controlled by the mystique_logo(); function. Could you post the code for that function?
Also, this looks like a theme where you’re not supposed to edit directly. You should probably make these edits in a child theme. But can’t give much help until I see the contents of the mystique_logo(); function.
Forum: Themes and Templates
In reply to: Change Text Font Size on Pages?For the spaces between paragraphs, remove the margin-bottom: 0 setting in the following rule in your CSS:
div#blog .entry p { color:#909090; font-family:Verdana,Arial,Helvetica,sans-serif; line-height:16px; <strong>margin-bottom:0;</strong> margin-left:0; margin-right:0; margin-top:0; padding-bottom:0; padding-left:0; padding-right:0; padding-top:0; }The text in your blog entries is controlled by another CSS class: #blog_center .item_class .item_class_text. You have a font size specified in that class and the margins for paragraphs within divs in that class are not set to zero.
The text in your pages is controlled by the .entry class, which did not have a font size specified, and the margin on paragraphs in that class is set to zero. That explains the difference!
Forum: Themes and Templates
In reply to: Newbie to wp and php – Comment form where is it?I totally know what you mean. For every theme I create I make sure it is heavily commented. Theme developers are programmers who more often than not forget to take the end-user into consideration. 🙂 I’m also waiting for the day when WordPress includes a built-in form management tool (especially one that lets us control the comment form).
In the mean time, I’ll try and help you out as best as I can. The location of the actual comments form code varies by theme. Some themes will have the comment form inside the functions.php file. Or the code might be in the comments.php file. Which fields do you want to remove? You could just comment them out in the code. Do you know how to comment out PHP code?
If you could copy and paste your comment form code here and tell me which fields you want to remove, I’ll show you how to comment it out.
Forum: Themes and Templates
In reply to: Change Text Font Size on Pages?Looking at your CSS, pages are using the .entry div, and that div is currently inheriting its font size from “body.” This is it:
body { font-family:Trebuchet MS,Verdana,Arial,Helvetica,sans-serif; font-size:10px; }You could either change that 10px to something else, or add a font size in .entry to override it.
Forum: Themes and Templates
In reply to: Template issues – pages and postsIn your style.css file, find:
.page .entry { width:564px; }Change it to:
.page .entry { width:100%; }Forum: Fixing WordPress
In reply to: How to echo custom taxonomy ID?Awesome!
Forum: Fixing WordPress
In reply to: Page Order not workingWhat is the nature of this list of pages? Is it a menu? Look through the part of the template file that’s creating the page list as esmi suggests, and search for <?php wp_list_pages(); ?>. The ‘sort_column’ argument in this function is probably set to ‘post_title’. You should set it to ‘menu_order’.
Forum: Fixing WordPress
In reply to: How to echo custom taxonomy ID?No problem. 🙂 Did it work?
Forum: Fixing WordPress
In reply to: How to echo custom taxonomy ID?Try this:
<?php $terms = get_the_terms( $post->ID , 'taxonomy-name' ); if($terms) { foreach( $terms as $term ) { echo $term->term_id.'<br />'; } } ?>Forum: Fixing WordPress
In reply to: Dashboard has no stylesDid you install WordPress yourself using FTP, or did you use an automatic installer provided by GoDaddy?
I would first delete your current installation and try installing it again. It’s possible a file got corrupted during transfer or you might have accidentally forgotten to transfer over a file.
So yes, first try installing it again and see if that doesn’t fix the problem.
Forum: Fixing WordPress
In reply to: MaintenanceI just visited your site and it looks like it was back up. Your web host was probably just doing some maintenance and there was nothing wrong with your site in particular…
Could you paste that code in the pastebin?