Hi Chit,
thank you for the answer. Meanwhile I've figured how to move elements in .php, there is a bunch of files you just need to dig. :)
But now i need to add content to my .php, hope you can help me with that. What i need to do is to add <img> in header that is visible on all pages. I think that will be in my masthead.php file.
Here is code:
<header id="masthead" role="banner">
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'container' => 'nav', 'container_id' => 'nav-primary', 'fallback_cb' => 'false', ) ); ?>
<hgroup>
<?php if ( (is_front_page()) && ($paged < 1) ) : ?>
<h1 id="site-title"><?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?></h1>
<?php else : ?>
<h1 id="site-title"><a href="<?php echo esc_url( home_url('/') ); ?>" rel="home" title="<?php _e('Go to the front page', 'onemozilla'); ?>"><?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?></a></h1>
<?php endif; ?>
<?php if (get_bloginfo('description','display')) : ?>
<h2 id="site-description"><?php echo esc_attr( get_bloginfo('description', 'display') ); ?></h2>
<?php endif; ?>
</hgroup>
<a href="
http://www.mozilla.org/" id="tabzilla">Mozilla</a>
</header><!-- #masthead -->
I wish to add <img> inline with main header - "Ми смо Мозила". (
http://mozilla-srbija.org/).
Thanks in advance, and happy new year. :)