Connor Crosby
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS and HTML helpYou have a table set to 245px for height. That is why your blog posts are at the bottom.
For the title, just go to your CSS file and target h2. For the date, target class=”top_meta”. The content is class=”entry”, and then for the post information such as author, target class=”bottom_meta” in your CSS file.
I am not sure about your other issues.
Forum: Themes and Templates
In reply to: Display ONLY on page 1I am sorry, I am not that familiar with conditional statements, what would i write. If it helps, I am displaying a welcome message that I am getting from a page. Then, once they visit the second page of the blog posts, it does not display the welcome message. Thank you!
Forum: Fixing WordPress
In reply to: Home page and Blog PageOkay, but how would I make it so I can have a page with all the blog posts?
Forum: Networking WordPress
In reply to: Multisite Subdomain Manually make SubdomainsAlright, I will try that out. Thanks!
Forum: Themes and Templates
In reply to: Dynamic Menu Highlighting with WP 3 MenusOh really? Thanks for the tip!
Forum: Themes and Templates
In reply to: Multiple Backgrounds (switch between them)Oh that is awesome, thanks!
Forum: Themes and Templates
In reply to: Space Where No Featured ImageAwesome that is exactly what I was looking for! Thanks so much!
Forum: Fixing WordPress
In reply to: IF custom field exists – display divI decided to go with something else:
<?php if (in_category('tutorials')) : ?> <div id="tutorials"> <h4>Tutorial Information</h4> <ul> <li><strong>You Will Need:</strong> <?php echo get_post_meta($post->ID, 'tut_you-will-need', true); ?></li> <li><strong>Optional:</strong> <?php echo get_post_meta($post->ID, 'tut_optional', true); ?></li> <li><strong>Difficulty:</strong> <?php echo get_post_meta($post->ID, 'tut_difficulty', true); ?></li> <li><strong>Est. Length of Time:</strong> <?php echo get_post_meta($post->ID, 'tut_time', true); ?></li> </ul> </div> <?php endif; ?>
Thank you so much for the help!
Forum: Fixing WordPress
In reply to: IF custom field exists – display divAll it shows is a blank page
Forum: Fixing WordPress
In reply to: IF custom field exists – display divFor some reason it is not working:
<?php if ( in_category( array( 'tutorials', 'photoshop', 'illustrator', 'dvd studio pro', 'final cut pro', 'motion', 'after effects' ) )) { <? include('tutorials.php') ?> } ?>
Forum: Fixing WordPress
In reply to: IF custom field exists – display divOkay, thanks! I will try it out.
Forum: Fixing WordPress
In reply to: IF custom field exists – display divNow how can I make it so if it is a certain category, such as Tutorials, that it displays tutorial information that I enter with custom fields?
Thanks!
Forum: Fixing WordPress
In reply to: IF custom field exists – display divYeah it worked! Thanks so much, that helps me a lot!
Forum: Fixing WordPress
In reply to: IF custom field exists – display divOkay, will try it, thanks!
Forum: Fixing WordPress
In reply to: IF custom field exists – display divBy the way, I am doing this on my local server so I cannot share a url with anyone. And I reply fast.