I would like to have an image to replace or accompany the title on my sites pages instead of just the basic text of it – so we have have a full width image to head up the page.
Are there any plugins which would do this – or is there a setting I can use to remove the title and add a full width image?
I am running the Spacious Pro theme.
Thanks
Alice
]]>The top of the page is a master slider (Revolution). Later down in the page are currently 4 images horizontally spread across the page, with text underneath. Clicking on the image allows the user to access a page relating to that graphic.
I would like to then, rotate those four images and display four different graphics with different destinations (8 in all). After the second four is shown, it would go back to the first four.
This is in the main page, not sidebar, footer or slider areas. For what it’s worth I am using the Karma Word Press Theme (excellent one, btw)!
Thank you for any help you might give on this!
Korky
]]>I just started my website and I LOVE your theme! But, I have some images I want to put on certain pages and no matter what size they are before upload, they are tiny on the page. How can I make them show bigger — there is no option for size when I click image properties. I imagine there was a max image size for pages (not posts) in the theme, so I figured I would ask. Thanks so much in advance!!
Alyssa
]]>I put the following code on function.php and it works perfect for post images. From the single.php i called with <?php the_post_thumbnail( ‘single-post-thumbnail’ ); ?>
//Enable Post Thumnails
add_theme_support( ‘post-thumbnails’ );
//thumnail size
set_post_thumbnail_size( 121, 91 ); // 50 pixels wide by 50 pixels tall, box resize mode
//original size for the single
add_image_size( ‘single-post-thumbnail’, 500, 374 ); // Permalink thumbnail size
But for the pages images i would like to use a diffrent size, 162×374. For that I duplicate the code as follow and change the ‘names’, but apparently it doesn’t work like that. In addition the duplicated code disables the first one.
//Enable Post Thumnails
add_theme_support( ‘page-thumbnails’ );
//thumnail size
set_post_thumbnail_size( 121, 91 ); // 50 pixels wide by 50 pixels tall, box resize mode
//original size for the pages
add_image_size( ‘page-thumbnail’, 162, 374 ); // Permalink thumbnail size
Hopefully someone can help me.
Thanks!!
Carla