JDK1313
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?Is there a way to get the picture next to the site title? Do I need to change the font size or just put the code down a line?
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?Great, that worked to get the title back.
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?If it’s a spacing issue I am ok with putting it above the search box too.
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?Thank you, I got the child theme created and activated and I followed your input directions. Image showed, YAY!! But the site title and tagline are missing and the text on the navigation menu is doubled.
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?yes, that’s the original unmodified header.php. I changed the colors in the custom css plugin, not the header file.
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?Here is the header.php
<?php /** * The Header for our theme. * * Displays all of the <head> section and everything up till <div id="main"> * * @package willingness */ ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <!-- For Responsive Layout from https://www.catswhocode.com/blog/making-a-website-responsive-in-3-easy-steps --> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="HandheldFriendly" content="true"> <!-- Responsive Ends Here --> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width" /> <title><?php wp_title( '|', true, 'right' ); ?></title> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <!--[if lt IE 9]> <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script> <![endif]--> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="page" class="hfeed site"> <?php do_action( 'before' ); ?> <header id="masthead" class="site-header" role="banner"> <div class="site-branding"> <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> </div><!--end site-branding --> <div id="header-right" class="header-sidebar"> <aside id="search-box"><!--start of #search-box --> <?php get_search_form(); ?> </aside><!-- end of #search-box --> </div><!--end of header right--> <!-- Custom Header code from custom-header.php --> <?php $header_image = get_header_image(); if ( ! empty( $header_image ) ) { ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /> </a> <?php } // if ( ! empty( $header_image ) ) ?> <!-- End Custom Header from custom-header.php --> <nav id="site-navigation" class="navigation-main" role="navigation"> <h1 class="menu-toggle"><?php _e( 'Menu', 'willingness' ); ?></h1> <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'willingness' ); ?>"><?php _e( 'Skip to content', 'willingness' ); ?></a></div> <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> </nav><!-- #site-navigation --> </header><!-- #masthead --> <div id="main" class="site-main">
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?Thank you, I will install the child theme and give that a try.
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?I appreciate you trying to help, but I need suggestions on the code. I have no problem using a child theme, but I’m still having problems with the code and my picture showing up as a broken link. Which is also why I posted in the trouble shooting forum as well as here, as you saw.
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?I have a custom CSS, but after all the research I have found I am lost as what to change where. When I change the code in the custom css noting is happening.
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?<h1 class="site-title"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
Do I need to be doing something in the custom-header.php and the custom css. I’ve tried so many things I am losing track of what I tried where and with what code. ??
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?Also, I am putting the code before this
<h1 class="site-title"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code has now been permanently damaged by the forum’s parser.]
Seems like the correct place because the broken image is showing up where I want the picture.
Forum: Themes and Templates
In reply to: [Willingness] Add a bio picture left of the header text?I don’t mind doing some coding, but I can’t seem to find a code that works. A broken link keeps showing up.
I have put this in <img src=”images/cropped-bio_pic_small.jpg” />
and I’ve tried this
<img src=”<cropped-bio_pic_small>The image is in the library, so I’m not sure what I’m doing wrong.