Insert a logo
-
The theme I’m using doesn’t have a logo option yet, only the blog title can be seen. So far I have managed to remove it and now I would like to insert a logo that would be hyperlinked to ‘Home’. I’m reall poor in coding so please help.
The site is https://www.stanovanjskikrediti.si
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <meta name="author" content="HPA, misbah" /> <title><?php if (is_home()) { bloginfo('name'); } elseif (is_404()) { echo '404 Not Found'; echo ' | '; bloginfo('name'); } elseif (is_category()) { echo 'Category:'; wp_title(''); echo ' | '; bloginfo('name'); } elseif (is_search()) { echo 'Search Results'; echo ' | '; bloginfo('name'); } elseif ( is_day() || is_month() || is_year() ) { echo 'Archives:'; wp_title(''); echo ' | '; bloginfo('name'); } else { echo wp_title(''); echo ' | '; bloginfo('name'); } global $codename,$$codename; ?> </title> <!-- Zogadia Theme Designed by hpa (https://wpjunction.com) Coded by misbah ([email protected]) --> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/reset.css" type="text/css" media="screen" /> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/default.css" type="text/css" media="screen" /> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/comments.css" type="text/css" media="screen" /> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/widgets.css" type="text/css" media="screen" /> <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-1.2.6-packed.js"></script> <style type="text/css"> /* type your style here */ </style> <script type="text/javascript"> jQuery.noConflict(); jQuery(document).ready(function() { jQuery('.block ul li,.widget ul li').each(function() { jQuery(this).hover( function() { jQuery(this).addClass('hover'); }, function() { jQuery(this).removeClass('hover'); } ); }); jQuery('#top-s').val('Type text to search here...').focus(function(){ jQuery(this).val(''); }).blur(function(){ if(jQuery(this).val() == '') jQuery(this).val('Type text to search here...'); }); }) </script> <!--[if IE 6]> <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/css/style-ie.css" /> <![endif]--> <?php wp_head(); ?> </head> <body> <div id="wrapper"> <div id="header"> <div id="header-content" class="clearfix"> <div id="branding"> <?php if (is_home()) : $home = ' current_page_item'; ?> <?php else: $home=''; ?> <?php endif ?> </div><!-- /branding --> </div><!-- /header-content --> <div id="page-menu" class="menu"> <ul> <li class="page_item <?php if(is_home()): ?>current_page_item<?php endif ?>"><a href="<?php echo get_option('home'); ?>/">Domov</a></li> <?php wp_list_pages('sort_column=menu_order&depth=1&title_li=');?> </ul> </div><!-- /page-menu --> </div><!-- /header --> <div id="container" class="clearfix">
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Insert a logo’ is closed to new replies.