webmarshall
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add SWF to right of logo in headerThank you very much! I will study CSS with more diligence ??
Happy Holidays!
Forum: Fixing WordPress
In reply to: Add SWF to right of logo in headerAhhhh, you are awesome! It worked perfectly. Ok, being the “why” person that I am…was it the float:left that allowed the ants to float left as well?
Thank you Thank you Thank you!
Forum: Fixing WordPress
In reply to: Add SWF to right of logo in headerWhoops: site is afengineering.co
I need the ants to sit to the right of the logo
Forum: Themes and Templates
In reply to: Image that changes depending on the Page IdThank you very much alchymyth! I’ll give it a shot.
Forum: Themes and Templates
In reply to: Image that changes depending on the Page Idadzay – did you get this resolved? I’m dealing with the same problem.
Thanks!
Thank you for responding! My biggest issue is that the image needs to be below the header and about the content (and sidebar) container. I found this idea on a forum but just can’t seem to get the photo to load:
`<?php $page_id=get_the_ID();
if(is_page()) { $image=’head-image-‘.$page_id.’.jpg’; };
if(!file_exists(TEMPLATEPATH.’/images/’.$image)) { $image=’head-image.jpg’; }
echo ‘<img src=”‘.get_bloginfo(‘template_url’).’/images/’.$image.'” alt=”” />’; ?>Maybe I have looked at it for so long that I’m not reading it correctly. Suggestions?
Thank you again for your help!
Forum: Fixing WordPress
In reply to: Remove posted by admin line on page content columnhi rcknapp, two answers: ‘inlcudes/functions/hooks.php’ – I downloaded a copy of elbee elgee and saved it to my computer. Then, I went to each of those folders: inlcudes – then functions – then hooks.php. I deleted what I wanted to get rid of on a free editor and overwrote the old version of the file (via FTP).
The “italic” issues sounds like a bad update or upload. Try removing the theme and reinstalling it. (Of course, you’ll want to save a copy of what you have now…just in case). Good luck!
Forum: Fixing WordPress
In reply to: Remove posted by admin line on page content columnThank you all for posting a response!
I removed the entire function from the theme folder (see vtxyzzy first post). I wanted to remove the ability to comment in the page content area as well. It worked perfectly. Thank you!
Here is what I removed under’includes/functions/hooks.php’:
function lblg_post_info(){
?>
<div class=”postinfo”>
<span class=”postmeta”>Posted by <?php the_author(); ?> on “><?php the_time(‘F jS, Y’); ?> <?php if (!is_single() && !is_page() ){ ?>| <span class=”commentlink”><?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></span><?php } edit_post_link(‘ Edit this entry.’, ”, ”); ?></span>
<?php if( !is_page() ) { ?>
<span class=”postcats”>Posted in <?php the_category(‘, ‘); ?></span>
<?php } ?>
<?php if( is_single() ){?>
<span class=”posttags”><?php the_tags(‘Tagged as: ‘,’,’); ?></span>
<?php }?>
</div>
<?php
}The blog for this site is under another wordpress name. We redirected it so my blog was not harmed.