Ryan Fitzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why is same CSS inside same php file is enforced 2 different ways?Have you looked in header.php for any conditional statements?
Forum: Fixing WordPress
In reply to: Pulling thumbnails into sidebarHere’s a great plugin I use to show excepts with a thumb taken from the first image in the post.
http://guff.szub.net/2006/02/09/post-image/
And here’s a thread where I talk about how I use it.
http://wordpress.org/support/topic/81136?replies=12#post-417649
Forum: Fixing WordPress
In reply to: when are applied the_content filter ?Can’t quite understand the question.
<?php the_content(); ?>is in the loop.Forum: Requests and Feedback
In reply to: Bug? Formatting for object or embed tagsI see what your saying. If you look at the code for the first three videos on that page, you will find no
<br />elements. These were posted with the most recent version of the plugin.Forum: Fixing WordPress
In reply to: changing the width in KubrickSecond rule down my friend. Put those glasses on.
Forum: Themes and Templates
In reply to: Colour of sidebar on “pages”You need to include the background image via css in that specific file. Here’s your background image:
http://www.roscoe.dk/wp-content/themes/default/images/kubrickbg.jpg
Forum: Fixing WordPress
In reply to: New User Registration email – how to change from address?I’m not sure how your mail is being handled. I would try contacting the host as well.
Forum: Fixing WordPress
In reply to: changing the width in KubrickNow you need to change the with of the #page rule. But be beware, once you start doing this, other things will need tweaking as you’ve just witnessed. Be prepared to start combing through your theme’s markup and css to get everything to play nice.
Forum: Fixing WordPress
In reply to: New User Registration email – how to change from address?Have you tried changing the email address in your profile? Mine shows as “wordpress@mydomain.com”. In my profile I have my email address set as “ryan@mydomain.com”. So it’s just switching out the first part.
Forum: Fixing WordPress
In reply to: changing the width in KubrickYou do this by changing the css rules that define the body’s width in the style.css file in the theme’s folder.
Forum: Fixing WordPress
In reply to: Validating Integrated WP within designWhat I mean by that so there is no confusion. Find a theme with the basic format you want and then alter the css to have your original site’s look. Your current navigation would be a little tricky, but if your the one who originally created it than I think you’ll be able to do it just fine. This way you’ll be able to get the full amount of functionality and benifit out of WP instead of associating with a lot of future headaches.
Forum: Requests and Feedback
In reply to: Bug? Formatting for object or embed tags2) The plugin – video-quicktags – is great for simplifying the act of adding the <object..> tags. But if you look at the source code of the video page at that site, you’ll see WordPress auto formatting has messed up the output HMTL – look at the object tag, and in between the start and end of the object tag, you’ll see a <br/>! And the plugin is trying to avoid this by making really long lines, even that is not fully able to work around the WordPress bug.
I’m not sure which “video” page you were looking at. I went to the front page of the site, viewed the source and did not see any
elements within the object element. Here is the code I found for the first video on the site:<object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/BQECwm3erEs"><param name="movie" value="http://www.youtube.com/v/BQECwm3erEs" /><param name="wmode" value="transparent" /></object>
Looks correct to me. The page also validated as XHTML 1.0 Transitional.
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.viper007bond.com%2F
Forum: Fixing WordPress
In reply to: Validating Integrated WP within designMost modern browsers will pick up the slack on a lot of invalid code. This isn’t recommended as you will not be able to be reasonably sure that your site will work for your intended audience. I believe the amount of time you spent putting WP into your site could have easily yielded success with you putting your site into WP. Your site seems to be tentatively working but I am positive you will be running into a multitude of problems down the road when you want to add more functionality in the form of plugins, upgrades, etc…
Forum: Fixing WordPress
In reply to: Validating Integrated WP within designYou will not see
<?php require('/u/k/kcit0806/www.kiplingcitizen.com/wp-blog-header.php'); ?>when you view the source of a page with a browser because this php script gets executed on the server. This goes for all server-side scripting languages. Basically, the server reads the contents of the file, does whatever it says and then outputs it to the browser. If you could see it than that means it has been handled incorrectly.Forum: Themes and Templates
In reply to: problems w next_post and previous_post in almost springThanks, good to know. I’ll read up on the former.