Mike
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: newbie php questionHow many times have you asked this?
Forum: Everything else WordPress
In reply to: How to keep up with forums?Forum: Fixing WordPress
In reply to: “get_posts” with date and comments?Forum: Fixing WordPress
In reply to: Were is the upload optionLook at the top of the admin menu for “Upload”
Forum: Fixing WordPress
In reply to: click photo to go back…photoblog questionRight, all the story content is going to be clickable. The above code works if your content is only the image tag.
You can always put the image tag in the excerpt field and use this instead:
<?php
$content = get_the_excerpt();
posts_nav_link(' ', '', $content);
the_content();
?>Forum: Everything else WordPress
In reply to: Pirated DesignUnfortunately, it isn’t theft so there is little you can (or should) do.
I like yours better:)!Forum: Fixing WordPress
In reply to: click photo to go back…photoblog questionRight after the start of the “loop.” Remember, it only works if you have your “content” area of the post as the image tag of your photo.
Forum: Themes and Templates
In reply to: footer citeYou haven’t defined the visited color in your style sheet for .credit.
Forum: Your WordPress
In reply to: FootballOutsiders :: newly WordPressified!Looks great (Go Packers)! What is the hack for the “Pages 1 [2]…Last” at the bottom of the blog?
Forum: Fixing WordPress
In reply to: click photo to go back…photoblog questionThat was me…oops!
Forum: Your WordPress
In reply to: Redesign(s)Now I am done with my photolog.
Forum: Fixing WordPress
In reply to: Quoting commentsPut blockquote tags where those ‘s are. Oops.
Forum: Fixing WordPress
In reply to: Quoting commentscutting edge scenarios worth considering in the 21st century.
Then in your style sheet:
blockquote {
border: 1px solid #b32400;
margin-left: 1.5em;
padding: 3px;
background-color: #ffffff;
}
…or something.Forum: Fixing WordPress
In reply to: Multiple BlogsEach WP install can use the same database. Just make sure that each gets a unique table prefix: wp1_ , wp2_ etc.
Forum: Themes and Templates
In reply to: controlling stylesheets for MOZ and IE;Let’s say you have a css class that displays differently in Mox and Ie:
.class { the: style }
and say that the above works in IE, but not Moz and you know how to modify the above to make it work in Moz, like this:
.class {the: style2 }
To make it work in both, add this to your stylesheet:
.class { the: style }
html>body .class {the: style2 }
Mozilla only sees the latter. Simple as that…though not pretty.