Mori
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog Page =/= Single Page PostI see. Thank you for your help anyways.
Forum: Fixing WordPress
In reply to: Blog Page =/= Single Page PostYeah the theme has no options, it is custom made.
Thank you for helping me!
Forum: Fixing WordPress
In reply to: Blog Page =/= Single Page PostI did, the one you see on the blog itself is the feature image… That’s the issue, it appears on the regular blog page but not in the single post page :\
Forum: Fixing WordPress
In reply to: Blog Page =/= Single Page PostI didn’t look in function themes but now that I see it I found this:
if(empty($first_img)){ //Defines a default image $first_img = "/wp-content/themes/dragonfood/images/default.jpg"; } return $first_img; } function get_featured_image() { if (has_post_thumbnail( $post->ID ) ) { $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); return $image[0]; } else { return "/wp-content/themes/dragonfood/images/default.jpg"; } }Which from reading it I’m guessing I have to replace…
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );But no idea what x_x
I figured it out, I placed the:
<div id="contact-wrapper"> <div id="contact-desc">On the actual page and not in the contact form.
I’ll close this now and thank you for anyone who read it 😡
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Page 2 >> 404Still didn’t work… I did contact him though so that helped to some extent! Thank you
Forum: Fixing WordPress
In reply to: Separating Sidebars / WidgetsNvm, got it. :c
Forum: Fixing WordPress
In reply to: Images have glow and borderThanks Alchymyth, I figured it out 9 seconds before you posted XD
Forum: Fixing WordPress
In reply to: Images have glow and borderNvm I figured it out! Thank you everyone for the help. And yeah it was in the CSS… This is what it was before:
.entry img, img.thumbnail { padding: 5px; background: #fff; box-shadow: 0 0 5px #cacaca; -moz-box-shadow: 0 0 5px #cacaca; -webkit-box-shadow: 0 0 5px #cacaca; } img.wp-smiley { padding: 0; border: none; }And I switched it to this:
.entry img, img.thumbnail { padding: 0px; background: none; box-shadow: 0 0 0px #cacaca; -moz-box-shadow: 0 0 0px #cacaca; -webkit-box-shadow: 0 0 0px #cacaca; } img.wp-smiley { padding: 0; border: none; }Thank you both for replying. 🙂
Forum: Fixing WordPress
In reply to: Images have glow and borderhttp://www.swordofthesaints.com/?page_id=54 Here’s the website… Uhm no I’m sure because I have been using photoshop for years so I know for a fact that it’s the CSS doing it. They’re PNGs that when i test them somewhere else they work fine. It’s just on those pages.
Also, if you look at this page too :
http://www.swordofthesaints.com/?page_id=9 You can see that those images also have a dim white glow, that I did not put in there.Thank you for the help!