Scaling the header image to browser width (Sparkling theme)

Hey guys, Just wondering if it it possible to centre the header menu in the sparkling theme? I’ve been trying to find it everywhere but can’t figure it out. Thank you venry much.

Dane.

Hi,

Came across this article and i am almost there. I used the following:

<?php

if ( is_front_page() || is_home() ) {
	echo '<img src="http://www.christiaanbruinink.nl/wp-content/uploads/2014/12/wp_FSA4370.jpg" alt="Thanks to Colorlib" />';
}

?>

However this header image now displays on both the home page AND the blogs/news page when selected as default page for articles in the customise settings.

Is there any way of ensuring it displays on just the home page. Site is: http://www.moju.hcajoie.com

THANKS

Ok worked it out. Slight change to code:

<?php

if ( is_front_page() ) {
	echo '<img src="http://www.christiaanbruinink.nl/wp-content/uploads/2014/12/wp_FSA4370.jpg" alt="Thanks to Colorlib" />';
}

?>

Hope this helps for anyone else who may come across this.