jkriggs
Forum Replies Created
-
@themehighsupport Where do I go to submit a ticket?
Hey Mark,
You have to edit your header php file. Adjust the width and height to whatever size you need. You need to do it in both places where you see the numbers below. Mine are set to 500 X 150.
`<!– Header –>
<div id=”header_wrap”>
<div id=”header”>Forum: Fixing WordPress
In reply to: Image Top Aligned – Can't move it downAdded this to the custom css
td.series {vertical-align: top;}
fixed it.
Forum: Fixing WordPress
In reply to: Image Top Aligned – Can't move it downHere’s the code that tells the image where to go:
<td class="series"><?php //get the post thumbnail for this post $image_id = get_post_thumbnail_id(); $image_url = wp_get_attachment_image_src($image_id,'full'); $image_url = $image_url[0]; if ($image_url != ""){ ?> <img src="<?php bloginfo( 'template_directory' ); ?>/thumb.php?src=<?php if (is_multisite()){echo get_current_site(1)->path; echo str_replace(get_blog_option($blog_id,'fileupload_url'),get_blog_option($blog_id,'upload_path'),$image_url); }else{ echo $image_url;}?>&h=45&w=80&zc=1" width="80" height="45" alt="image" /> <?php } ?></td>
Any ideas?
Forum: Fixing WordPress
In reply to: Blockquotes not working – HelpI had removed the blockquotes from that page.
Check this one out -the blockquotes are in the html code but not formatting properly.
https://www.newworshipresources.com/blog/test-quote-page/
Any ideas?
Forum: Themes and Templates
In reply to: Change Continue Reading TagThanks for the reply guys.
I have the sight password protected because I want it to be “right” before the launch date.
You’re probably right – it’s not necessary.
You can see the entire site – theme and all even though you have to log in.
user:testuser
pass:webfolioFire Truck – the page that has “continue reading” is https://www.newworshipresources.com/category/blog/
You’ll see the “Continue” is in the orange button.
But the “Reading (Post Title)” is in white font – outside of the orange button.
I have changed everything I know in order to get the <!–more–> tag to work properly.
It did work properly at one time – but I changed the site url and after that switch is when it started acting weird.
I’m a NooB at WordPress – sorry if none of this makes sense.
Thanks for any help you can give.
jkriggs
Forum: Themes and Templates
In reply to: Change Continue Reading TagI am having this same issue – I want to change the more tag to “Read More” right now it says “Continue Reading (Post Title)”
https://www.newworshipresources.com
user: testuser
pass: webfolioI have tried to change every instance of +<?php the_content(__(‘read more’)); ?>+
but nothing changes.
Can anyone help with this?