KMLProxy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Layering/Stacking DIVs? Help!Alright, I’ve inserted the img link into the page content, within the <div> “banner” tags… additionally, I’ve added an overflow: hidden; parameter to my “banner” div…
Now, however, I have two problems…
1) My header image was made deliberately over-long – to compensate for large resolution monitors… as such, the image is currently off-center – how can I get that image centered? (The problem is evident if you visit the site)
2) The header div scrolls WITH the sheet, rather than remaining fixed… it was originally held fixed due to the fact that it was a background image and I had the position property fixed… how can I give this container a fixed (non-scrolling) marker now?
I really appreciate the help.
Forum: Fixing WordPress
In reply to: Layering/Stacking DIVs? Help!Whoops, I meant to include a link in my original post…
Hope this helps!
Forum: Fixing WordPress
In reply to: Problems with Custom Page Template Column SizingAny ideas on how I can maintain all three page templates without running into an error?
Forum: Themes and Templates
In reply to: Z-Index Issue – Please Help CSS/HTMLSorry, perhaps I should have mentioned… I’m using Chrome and it shows up on both the Dev and stable builds, so it certainly doesn’t seem to be IE specific. Any further ideas?
Forum: Themes and Templates
In reply to: Add Border to Menu – Please HelpThanks, that seems to have worked great, minus the fact that the border seems just a pixel or two shy of actually touching the black border that runs around the edge of the sheet – you should be able to see that. Any ideas?
Again, I appreciate your help
Forum: Themes and Templates
In reply to: Add Border to Menu – Please HelpPardon, here is the URL:
Forum: Fixing WordPress
In reply to: HELP! Fatal Error in functions.phpDoes anyone have a solution to suggested that isn’t blindingly obvious?
Forum: Fixing WordPress
In reply to: Help Removing Category Archive Label/SpacingHmm… here is the entirety of the archive.php from the top down a ways past the code I’ve displayed already. Can you isolate and recommend what needs to be removed?
<?php get_header(); ?>
<div class=”art-content-layout”>
<div class=”art-content-layout-row”>
<?php include (TEMPLATEPATH . ‘/sidebar1.php’); ?><div class=”art-layout-cell art-content”><?php is_tag(); ?>
<?php if (have_posts()) : ?><div class=”art-post”>
<div class=”art-post-tl”></div>
<div class=”art-post-tr”></div>
<div class=”art-post-bl”></div>
<div class=”art-post-br”></div>
<div class=”art-post-tc”></div>
<div class=”art-post-bc”></div>
<div class=”art-post-cl”></div>
<div class=”art-post-cr”></div>
<div class=”art-post-cc”></div>
<div class=”art-post-body”>
<div class=”art-post-inner art-article”><div class=”art-postcontent”>
<!– article-content –><?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class=”pagetitle”><?php printf(__(‘Archive for the ‘%s’ Category’, ‘kubrick’), single_cat_title(”, false)); ?></h2>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h2 class=”pagetitle”><?php printf(__(‘Posts Tagged ‘%s’’, ‘kubrick’), single_tag_title(”, false) ); ?></h2>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class=”pagetitle”><?php printf(_c(‘Archive for %s|Daily archive page’, ‘kubrick’), get_the_time(__(‘F jS, Y’, ‘kubrick’))); ?></h2>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class=”pagetitle”><?php printf(_c(‘Archive for %s|Monthly archive page’, ‘kubrick’), get_the_time(__(‘F, Y’, ‘kubrick’))); ?></h2>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h2 class=”pagetitle”><?php printf(_c(‘Archive for %s|Yearly archive page’, ‘kubrick’), get_the_time(__(‘Y’, ‘kubrick’))); ?></h2>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h2 class=”pagetitle”><?php _e(‘Author Archive’, ‘kubrick’); ?></h2>
<?php /* If this is a paged archive */ } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?>
<h2 class=”pagetitle”><?php _e(‘Blog Archives’, ‘kubrick’); ?></h2>
<?php } ?><?php
$prev_link = get_previous_posts_link(__(‘Newer Entries »’, ‘kubrick’));
$next_link = get_next_posts_link(__(‘« Older Entries’, ‘kubrick’));
?><?php if ($prev_link || $next_link): ?>
<div class=”navigation”>
<div class=”alignleft”><?php echo $next_link; ?></div>
<div class=”alignright”><?php echo $prev_link; ?></div>
</div>
<?php endif; ?>Forum: Fixing WordPress
In reply to: Help Removing Category Archive Label/SpacingI’ve restored the code I deleted, and the full item I want removed is visible.
I want that entire block removed.
https://www.thepoliticalpodium.com/category/government/the-congress/
Forum: Fixing WordPress
In reply to: Footer Centering IssueHmm… I recently made some changes to my theme within my theme editing software, and am having the same issue where the footer area is taller than it previously was, even with:
.art-footer .art-footer-text p
{
margin: 0px 100px 0px 0px;
}as the code… any suggestions, please?
https://www.thepoliticalpodium.com
Thanks,
KMLForum: Fixing WordPress
In reply to: Help Moving Icons In FooterI now have an issue where the footer is thicker than it originally was… any ideas?
Forum: Fixing WordPress
In reply to: Help Moving Icons In FooterThat did the trick… although merely changing that value, now the Facebook icon is to the right of the RSS icon.
I’d like the Facebook icon to be to the LEFT of the RSS icon, so that the RSS icon is the very most bottom right icon.
Any tips?
Forum: Fixing WordPress
In reply to: Help Moving Icons In FooterOdd, for some reason the links within the art-footer-inner didn’t show… in any event, here they are:
a href=”https://www.twitter.com/politicalpodium” class=”art-twpp-tag-icon” title=”@PoliticalPodium”>
a href=”https://www.twitter.com/rightrepublic” class=”art-twrr-tag-icon” title=”@RightRepublic”>
a href=”https://www.twitter.com/leftleague” class=”art-twll-tag-icon” title=”@LeftLeague”>
a href=”https://www.facebook.com/pages/The-Political-Podium/141080072589452″ class=”art-fb-tag-icon” title=”Facebook”>
a href=”https://feeds2.feedburner.com/ThePoliticalPodium” class=”art-rss-tag-icon” title=”RSS”>Forum: Fixing WordPress
In reply to: Footer Centering IssuePerfect! Needed to add the ‘px’ to each value, but that worked splendidly.
Thanks so much for your help!
Forum: Fixing WordPress
In reply to: Footer Centering IssueThanks, that did the trick as far as centering…
However, after having modified that value within my stylesheet, the footer section itself has become taller, as well… any ideas as to how to counter that? You’ll see now that the icons are not sized right to take up the space, and though I could make them bigger, I’d prefer to have the thinner footer that they were originally sized for… not entirely sure why just modifying the margin: 0px to margin-right: 130px would have resulted in the footer becoming thicker.
Thanks,
KML