xmatter
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How To Center Youtube Video!?here is an iframe, try it
<iframe width="560" height="315" src="//www.youtube.com/embed/_2YKJZlob3o" frameborder="0" style="margin:0 auto" allowfullscreen></iframe>
Forum: Fixing WordPress
In reply to: Display post from one category – PaginationI have used a page template for this:
<?php /* Template Name: Single Category */ ?> <?php get_header(); ?> <?php get_sidebar(); ?> <div id="content"> <?php query_posts('showposts=-1&cat=13&orderby=rand'); if (have_posts()) : while (have_posts()) : the_post(); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_meta(); ?> <!--<?php the_post_thumbnail(); ?>--> <?php endwhile; endif; ?> <?php wp_reset_query(); ?> </div><!-- end content --> <?php get_footer(); ?>
change the cat13 to whatever your cat to be displayed is. Then you must change the PAGE to this page template.
Forum: Fixing WordPress
In reply to: How To Center Youtube Video!?did you add a class like:
<div style="margin:0 auto; width: VIDEO WIDTH">VIDEO LINK</div>
Forum: Fixing WordPress
In reply to: Accidentally PublishedI open the post on the backend, click SCREEN OPTIONS up top, and check the DISCUSSION box. Then scroll down and make sure COMMENTS in checked.
You are welcome, enjoy your WordPressing!
Forum: Fixing WordPress
In reply to: What is wrong with this code?the img scr is invalid syntax
<img src="" colors-in-love-version-2-non-editable-web-ready-file.jpg?="" 03="" 2012="" uploads="" wp-content="" lifecoach101.com=""/>
QUESTION MARK after filename, and nothing within SRC
I think this code was added by mistake.
Forum: Fixing WordPress
In reply to: What is wrong with this code?the first img src is incorrect in code. do you need it?
Forum: Fixing WordPress
In reply to: What is wrong with this code?on second thought, it appears teh site-logo div is not closed properly, looks like it is missing the closing div tag
Forum: Fixing WordPress
In reply to: What is wrong with this code?you have 2 images, but after the second image, there is this:
Text – ” />
remove that, and you will be set. That little bit of extra code and breaking the code before it.
Forum: Fixing WordPress
In reply to: Not able to login to wordpress on a specific computerSame browser and version of browser the same on both laptops?
Forum: Localhost Installs
In reply to: Unable to get WP installed on Win2k3SP2, IIS 6There seems to be plenty of fixes for this file, just google it and find th correct fix for 2003. I use iis7 on 2008 and had no issues. iis is slow compared to WAMP which is what I run internally at my employer for their intranet. WAMP is less of a hassle as well
Forum: Fixing WordPress
In reply to: Weird Display IsuesWell done! Thanks for teaching me something to look out for.
Forum: Fixing WordPress
In reply to: Not able to login to wordpress on a specific computerI would check with them and tell them what is going on. I know they sometimes restrict certain items for no reason, such as certain IPs. It doesn’t make any sense that one machine would work and not another.
Forum: Installing WordPress
In reply to: Updating 3.6 installation errorAre you using a FREE hosting company?
Forum: Fixing WordPress
In reply to: What is wrong with this code?Hmmm… I assume you remove what you did from your live site because I cannot see “blank” on there. Or does it only occur through the Admin side?