• Resolved singin-hobo

    (@singin-hobo)


    Hi,
    I’m trying to customize my blog using the theme ‘Arjuna X
    For now, what I’d like to do is just remove the WordPress title and tagline from on top of the image and use my own photoshopping to make it look as I like. You can see what I’m doing at https://www.herooftheroad.com

    I’d still like the title and tagline to appear above the page on the browser tab, just not on the blog itself.
    I’m not much of a programmer, so as specific of instructions as you can give to somebody with ‘word processor’ proficiency would be a great help. I know how to get into the theme editor and identify the different theme files, but beyond that I get lost pretty quick. Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • post your header.php code and I will tell you.

    Thread Starter singin-hobo

    (@singin-hobo)

    <?php $arjunaOptions = arjuna_get_options(); ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head>
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>"  />
    <title><?php
    if (is_home ()) { bloginfo('name'); echo " - "; bloginfo('description'); }
    elseif (is_category() || is_tag()) {single_cat_title(); arjuna_get_appendToPageTitle(); }
    elseif (is_single() || is_page()) {single_post_title(); arjuna_get_appendToPageTitle(); }
    elseif (is_search()) {_e('Search Results:', 'Arjuna'); echo " ".wp_specialchars($s); arjuna_get_appendToPageTitle(); }
    else { echo trim(wp_title(' ',false)); arjuna_get_appendToPageTitle(); }
    ?></title>
    <?php if(is_home()): ?><link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /><?php endif; ?>
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <?php
    if (!$arjunaOptions['enableIE6optimization'] || !arjuna_isIE6()) { ?>
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    	<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' );?>
    	<?php wp_head(); ?>
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/default.js"></script>
    	<!--[if lte IE 7]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie7.css" type="text/css" media="screen" /><![endif]-->
    	<!--[if lte IE 6]>
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie6.css" type="text/css" media="screen" />
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/ie6.js"></script>
    	<![endif]-->
    	<?php print arjuna_get_custom_CSS(); ?>
    <?php } elseif(arjuna_isIE6()) { ?>
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie6_full.css" type="text/css" media="screen" />
    	<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' );?>
    	<?php wp_head(); ?>
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/default.js"></script>
    	<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/ie6.js"></script>
    	<?php print arjuna_get_custom_CSS(); ?>
    <?php } ?>
    </head>
    
    <body<?php if(!$arjunaOptions['headerMenu1_show']): ?> class="hideHeaderMenu1"<?php endif; ?>><a name="top"></a><a id="skipToPosts" href="#content"><?php _e('Skip to posts', 'Arjuna'); ?></a>
    <div class="pageContainer">
    	<div class="headerBG"></div>
    	<div class="header">
    		<?php if($arjunaOptions['headerMenu1_show']): ?>
    		<div class="headerMenu1<?php if($arjunaOptions['headerMenu1_alignment']=='left'): ?> headerMenu1L<?php endif; ?>">
    			<ul id="headerMenu1"><?php
    				if ($arjunaOptions['headerMenu1_display']=='pages') {
    					wp_list_pages('sort_column='.$arjunaOptions['headerMenu1_sortBy'].'&sort_order='.$arjunaOptions['headerMenu1_sortOrder'].'&title_li=&depth='.$arjunaOptions['headerMenu1_dropdown']);
    				} elseif ($arjunaOptions['headerMenu1_display']=='categories') {
    					wp_list_categories('orderby='.$arjunaOptions['headerMenu1_sortBy'].'&order='.$arjunaOptions['headerMenu1_sortOrder'].'&title_li=&depth='.$arjunaOptions['headerMenu1_dropdown']);
    				}
    			?></ul>
    			<span class="clear"></span>
    		</div>
    		<?php endif; ?>
    		<?php
    		if ($arjunaOptions['headerImage'])
    			$tmp = ' header_'.$arjunaOptions['headerImage'];
    		else $tmp = ' header_lightBlue';
    		?>
    		<div class="headerMain<?php print $tmp; ?>">
    			<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
    			<span><?php bloginfo('description'); ?></span>
    			<div class="headerSearch">
    				<form method="get" action="<?php bloginfo('url'); ?>/">
    					<input type="text" class="searchQuery searchQueryIA" id="searchQuery" value="<?php _e('Search here...', 'Arjuna'); ?>" name="s" />
    					<input type="submit" class="searchButton" value="<?php _e('Find', 'Arjuna'); ?>" />
    				</form>
    			</div>
    		</div>
    		<div class="headerMenu2<?php if($arjunaOptions['headerMenu2_displaySeparators']): ?> headerMenu2DS<?php endif; ?>"><span class="helper"></span>
    			<ul id="headerMenu2">
    				<?php if($arjunaOptions['headerMenu2_displayHomeButton']): ?><li><a href="<?php (function_exists('icl_get_home_url'))?(print icl_get_home_url()):(bloginfo('url')) ?>" class="homeIcon"><?php _e('Home','Arjuna'); ?></a></li><?php endif; ?><?php
    					if ($arjunaOptions['headerMenu2_display']=='pages') {
    						wp_list_pages('sort_column='.$arjunaOptions['headerMenu2_sortBy'].'&sort_order='.$arjunaOptions['headerMenu2_sortOrder'].'&title_li=&depth='.$arjunaOptions['headerMenu2_dropdown']);
    					} elseif ($arjunaOptions['headerMenu2_display']=='categories') {
    						wp_list_categories('orderby='.$arjunaOptions['headerMenu2_sortBy'].'&order='.$arjunaOptions['headerMenu2_sortOrder'].'&title_li=&depth='.$arjunaOptions['headerMenu2_dropdown']);
    					}
    				?>
    			</ul>
    			<span class="clear"></span>
    		</div>
    	</div>
    
    	<div class="contentWrapper<?php
    		//Sidebar
    		if ($arjunaOptions['sidebarDisplay']=='none') {
    			print ' NS';
    		} elseif ($arjunaOptions['sidebarDisplay']=='right') {
    			if ($arjunaOptions['sidebarWidth']=='small') print ' RSSW';
    			elseif ($arjunaOptions['sidebarWidth']=='large') print ' RSLW';
    		} elseif ($arjunaOptions['sidebarDisplay']=='left') {
    			if ($arjunaOptions['sidebarWidth']=='small') print ' LSSW';
    			elseif ($arjunaOptions['sidebarWidth']=='large') print ' LSLW';
    			else print ' LSNW';
    		}
    	?>">
    		<a name="content"></a>

    thanks

    This is the code for your Title and Slogan.

    <div class="headerMain<?php print $tmp; ?>">
    			<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
    			<span><?php bloginfo('description'); ?></span>

    To make it easy try this instead

    <div class="headerMain">

    If that doesn’t work try this.

    <div class="headerMain<?php print $tmp; ?>">
    			<h1></h1>
    			<span></span>

    let me know if it works

    Thread Starter singin-hobo

    (@singin-hobo)

    Thank you. Sorry for the sporadic responses… I’m picking away at the details of my site whenever I’ve got a few minutes here-and-there.

    Just FYI, the second one worked perfectly. The first gets rid of the header image altogether.
    Thanks for the help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Getting rid of the auto-title’ is closed to new replies.