asdf
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Weird Div Float AlignmentSame result, thanks for trying.
Changed it to 100px, floating right and left. I was thinking the same thing, that it was just to large and being pushed below, which something is obviously, but that’s not why oddly enough. Probably an empty div with a width that IE is using and not Firefox.
I’m thinking it might have something to do with the gray stretching div also, but unable to see any changes altering it. (.graybar)
Currently rewriting the theme from scratch, instead of using an old theme and converting it. If the site looks not complete and not described as above, refresh in a few seconds.
I really dislike IE.
Forum: Fixing WordPress
In reply to: How do I add a banner code to the bottom of my page?in <site_root>/wp-content/themes/<your_theme>/footer.php probably.
I’d have to see the page to tell you where I’d suggest pasting the code, etc.
Forum: Themes and Templates
In reply to: show *ALL* posts from one category, not just 5Here’s an example of how I usually make a list of posts for a certain category, without the_content. You can fiddle with it to suite your needs. This should show the category “Galerie” (case sensitive) and up to 99999999 posts.
<div class="outterdiv"> <?php if (have_posts()) : ?> <h2>Galerie</h2> <?php $temp_query = $wp_query; ?> <?php query_posts('category_name=Galerie&showposts=99999999'); ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <ul><li class="style1"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li></ul> </div> <?php endwhile; ?> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here. <?php endif; ?> </div>
Forum: Requests and Feedback
In reply to: Auto-save posts/pages. Option to turn it off.You can go to wp-settings.php in your blogs root.
Change the line:
define( 'AUTOSAVE_INTERVAL', 60 );
to whatever. Can also be manually defined in wp-config.php.
Forum: Themes and Templates
In reply to: Need help with small Safari issueAnother funny thing, I went to validate the XHTML, and changed from transitional to strict. The h1 I’m having issues with moved down about 2 pixels in Safari. Not fixing the issue, but yeah.
Changed it to margin-top: 5px; Looks fine in Safari, going to just live with 5 extra pixels in IE and Firefox, until I find a solution that doesn’t involve its own stylesheet.
Forum: Themes and Templates
In reply to: Need help with small Safari issueJust tried it and there was no change. Thanks for trying.
About to just use a different stylesheet for Safari. It’s important that it works with it on this site.
I found a “hack” that worked in older versions of Safari. Where you add # at the end of the margin-top line, but it doesn’t work in version 3+. If anyone knows how to solved the margin-top: 0px; thing in Safari please let me know.
Forum: Themes and Templates
In reply to: Need help with small Safari issueWell, Safari doesn’t like margin-top: 0px on the #header h1. Removing it adds unwanted space in Firefox and IE, but fixes it in Safari. Go figure.
Forum: Themes and Templates
In reply to: Need help with small Safari issueAlright, I just put the direct link.
Also added an image on top above the header text, it seems to be something with the CSS for the h1, header, or a.
Forum: Plugins
In reply to: Combing WordPress Login method with an external siteThank you, I will look into that. Not sure exactly where to go from there, but it’s a great start. Here’s an example of the login page, if you’re curious https://tinyurl.com/3gdsry
Forum: Themes and Templates
In reply to: 4 column templatesForum: Fixing WordPress
In reply to: How to do Different Category Post on Different Blog PageI was to quick and responded w/slightly the wrong info.
<?php query_posts('category_name=Uncategorized&showposts=1'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( in_category('1') ) { ?>
Category_name is the category
Showposts is how many
In_category is the category IDForum: Themes and Templates
In reply to: Remove bullet from post-metaIf you don’t want them at all anywhere, try:
ul li {list-style-type: none;}
if that doesn’t work try:
ul li {list-style-type: none !important;}
Don’t have time to actually look at the actual css.
Forum: Fixing WordPress
In reply to: How to do Different Category Post on Different Blog PageI think this is what you’re asking for.
This will make the loop display a certain category and limit how many posts it has:
<?php query_posts('category_name=PUTITHERE&showposts=1'); ?>
You’d put that before something like this:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
Where it says PITITHERE, put the name of the category. Where the number 1 is, put the category ID. In Wordpess 2.5, you have to go to manage -> categories, then hover over or copy the link location of the category you want, and the ID is at the end of the URL.
Forum: Plugins
In reply to: Group categories, etc.Not on the admin screen.
3 drop down boxes and a submit button. All 3 boxes have unique categories. If you select a category from each box and hit submit, it lists all the posts from those 3 categories.
Forum: Fixing WordPress
In reply to: how do you make “collapsable posts?”It could look like several things. If you are doing it for the homepage look in the index.php of your theme.
It could look a little different like:
<?php the_content('Read the rest of this entry »'); ?>
For example.
That is the code that would display the content of a post. Would be in other places like single.php as well.