Marc
Forum Replies Created
-
Forum: Plugins
In reply to: [Instant Articles for WP] Add Custom Post Type meta field to Instant Articles@pr0fess0r Did you ever manage to get this right?
Forum: Themes and Templates
In reply to: YouTube video handlingI managed to find a plug in that achieves this better than I could. It’s called TubePress.
Forum: Themes and Templates
In reply to: YouTube video handlingBump
Forum: Themes and Templates
In reply to: Footer floating on contentI managed to get better help on another forum. The solution was:
1) To remove all {position: relative;} and {position: absolute;} statements.
2) Move the overflow property to the parent of the float element.Forum: Themes and Templates
In reply to: Footer floating on contentWhat does that mean?
Forum: Themes and Templates
In reply to: Footer floating on contentGot most of the errors fixed. As expected, no improvement. Please help.
Forum: Themes and Templates
In reply to: Footer floating on contentI need the main problem fixed ASAP. Can you think of something that’s doing that?
Forum: Themes and Templates
In reply to: Footer floating on contentYes, I know about those and they’re being sorted out, but they aren’t the problem.
Forum: Themes and Templates
In reply to: Links not workingSOLVED! I used the
z-index:-1property and brought the links to the front. They work beautifully now.Forum: Themes and Templates
In reply to: Links not workingI have narrowed it down to the absolute and relative positioning, but all the variations I try can’t seem to keep my links there and make them clickable.
Forum: Themes and Templates
In reply to: Single quotes within single quotes (PHP)Fantastic, that did the trick.
What I am trying to do is make the template look for the category to include using the custom field. This way I can use one template for multiple pages with more focussed categories.
There was a slight mistake, but I noticed it and corrected it. Here is the final working code.
<?php global $wp_query; $postid = $wp_query->post->ID; $blogcat = get_post_meta($postid, 'BlogCat', true); $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query('posts_per_page=5&paged='.$paged . '&category_name='.$blogcat); ?>Forum: Themes and Templates
In reply to: Single quotes within single quotes (PHP)Using that gives me the following error:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/content/06/5371606/html/wp-content/themes/Srizzil2/blog.php on line 36
Forum: Themes and Templates
In reply to: Footer too highThat caused more chaos then good.
I managed to take it out and somebody else suggested I use
padding-bottom: 65px;on the content section of the different pages. That worked like a charm.Forum: Themes and Templates
In reply to: Footer too highThat works great for the blog, but now for my home page, and any other pages that don’t have scroll bars, the footer has moved down and you have to scroll to see it!
Forum: Themes and Templates
In reply to: YouTube embedded videos float over fixed navigationI was suggested this solution on a forum:
For the object element, use the param element, <param name=”wmode” value=”opaque”>. For the embed element, add the wmode attribute, <embed … wmode=”opaque”>
This works well, but is not ideal to have to implement into every embedded video for posters. Is there no other solution, or even perhaps a way to have this automatically added to every video?