markmichon
Forum Replies Created
-
Forum: Themes and Templates
In reply to: CSS validation erroswell the -moz-inline-box is a property specific to mozilla browsers. only those listed at http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-display are valid.
as far as the first error. It comes from http://www.niceoutput.com/wp-content/plugins/nextgen-gallery/thickbox/thickbox.css
That file has some weird code, including what looks to be some java. You might wanna ask the plugin author more about it.
Forum: Fixing WordPress
In reply to: Displaying Posts by yearWhat you want to do is something like this. replace 2004 with whatever year.
<?php query_posts('year=2004') ; //gets post from year ?>then your loop
Forum: Requests and Feedback
In reply to: WordPress NEEDS Email SupportYou could ask the questions here..and maybe someone will answer. WordPress is free, and all support is the community lending their time to help when they can.
Forum: Fixing WordPress
In reply to: Alignment of images and text links in sidebarThe problem is that you do not have it in your sidebar. You have it just below your sidebar. Try putting it right before that
</div>that closes the sidebarForum: Everything else WordPress
In reply to: WordPress CapabilitiesWell you could keep things like domain.com/portfolio, domain.com/blog, etc. I’m sure with a bit of research and manual htaccess redirecting you could turn those into fake subdomains. I know it used to be done to some extent before templates came into play.
Forum: Everything else WordPress
In reply to: WordPress CapabilitiesWordPress now offers a special type of post called a page.
http://codex.wordpress.org/Pages
Also check out http://codex.wordpress.org/Conditional_Tags for your questions regarding the different category formatting.
It’s very doable. in theory you could have your index set to just show the portfolio category, and have another page set up to loop posts from your blog category. I’d set up a test blog first to get a handle on how some of the new features work, but just read through the codex a bit and it should all make sense.
Forum: Everything else WordPress
In reply to: Anybody else see wp-register.php abuse?in your .htaccess file
Forum: Fixing WordPress
In reply to: All strange in IEseems fine in IE6 and IE7. What version are you using?
Forum: Fixing WordPress
In reply to: Paged Content Template?Well, I found a workaround by using is_paged to include a template I made on my own.
Still no idea if there is an actual pre-determined template file that solves this.
Forum: Themes and Templates
In reply to: How do I Show Sample HTML Code In comments.php filebest bet is to use this tag
<?php echo allowed_tags(); ?>Basically it will say all the stuff users can use in the comment field. So
The following tags are allowed: <?php echo allowed_tags(); ?>Forum: Themes and Templates
In reply to: How to display these two classes next to each other horizontallyenclose both of those divs into one parent div, then add float:left; to both bubble and editpost
Forum: Fixing WordPress
In reply to: blog wiped out and reset to hello World pageIt sounds like a database error on your end. See if your MySQL databases still exist, and if they are missing talk to your host about backups.
Forum: Fixing WordPress
In reply to: Navigaton Bar<?php wp_list_pages('title_li=&exclude=125'); ?>try that.
Forum: Fixing WordPress
In reply to: Can I remove ratings from my blogroll links?check out http://codex.wordpress.org/Template_Tags/get_links
it should be defaulting to false, but maybe something got switched somehow.
Forum: Fixing WordPress
In reply to: Navigaton Barif you are using wp_list_pages() to make your list, change it to
<?php wp_list_pages('exclude=#' ); ?>Change # to the page number you wish to exclude. you can exclude as many as you want by separating them with commas.