Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello frankpipia.ca,

    Yes,You can make your title two lines. Follow the following steps:
    1. Go to your website> Dashboard>Appearance>Editor
    2. Inside Editor in right side you will find section Select theme to edit. Select your theme in dropdown box.
    3. Go down to bottom of Templates, you will find style.css. Open it and search for .site-title
    4.Now change the following two things inside that.
    margin: 0 auto;
    width: 75%;

    I Hope that it will help in resolving your issue.
    Thanks!!

    Thread Starter frankpipia.ca

    (@frankpipiaca)

    Thank you Madhusudan Pokharel. It works but now I have three lines instead of two. Any ideas? https://WWW.frankpipia.ca

    Hello frankpipia.ca,

    I’m sorry to hear that you’re having trouble.
    When I open your website, I got this result on my browser.Result

    If this isn’t ok,From what you’ve written, it seems that you’re having an issue with showing number of title lines. Is that correct?
    In that case, Please go through following steps :

      If you want only one line title:

    • Go through the 3 steps again as I mentioned above.
    • Now change the following one things inside that.
      width: 100%;
    • Go to dashboard > Appearance > Customize > Site Identity > Tagline
    • Delete the text Your drywall and framing specialists
    • Click save and Publish

    That’s all and you will get one line Title.

    Thanks!!

    Thread Starter frankpipia.ca

    (@frankpipiaca)

    Hi Madhusudan Pokharel, What I was looking to have is “Frank Pipia” on one line, “Drywall and Framing” on the second line, and my site tagline underneath that. I adjusted the percentage from 75 to 60, but I cannot get it to work the way I want. If I lower the percentage below 75 percent, It shows “Frank Pipia” on One line, “Drywall and” on the second line, and “Framing” on the third line. Thank you Kindly.

    Theme Author Styled Themes

    (@gejay)

    Hi frankpipia.ca,

    for making your title in two line you need to customize code of logo-group.php file. iF you are familiar with basic of codding then please follow this steps.

    Make a child theme with partials folder. Copy logo-group.php file of parent theme and paste inside partials folder of child theme.

    Then replace <?php echo esc_attr( get_bloginfo( ‘title’ ) ); ?> with following html elements

    <p> Frank Pipia </p>
    <p> Drywall and Framing </p>

    Note: Please follow this procedure if you are familiar with basic coding otherwise you will be trouble. And doing this will disable customizer settig to change text of site title.

    Here we are emphasizing to use child theme so your changes will not lost on theme update

    Thanks

    Hello frankpipia.ca,
    I have found the solution. You have to learn to do few stuffs. Please go through each steps:
    1. Create a child theme using plugin https://www.ads-software.com/plugins/one-click-child-theme/
    2.Give your child theme name:Pure And Simple Child
    Watch https://www.youtube.com/watch?v=j8N2ECfilCE
    3.Copy folder partials from your theme into child theme using FTP.
    Watch https://www.youtube.com/watch?v=_nDQz1JQfYA
    4. Copy and Replace the whole code inside logo-group.php of child theme with following code

    <?php
    /**
     * The logo group for the header
     * @package Pure_and_Simple
     * @since 1.0.0
     */
    ?>
    
    <div id="masthead" class="header-box" style="background-color: <?php echo get_theme_mod( 'header_bgccolour', '#ffffff' ); ?>;">
    	<div class="header-bg" style=" background-image: url(<?php if (get_header_image() != '') : ?><?php header_image(); ?>
    	<?php endif; ?>);">
    
    		<div class="header-inner"  style="padding: <?php echo get_theme_mod( 'header_padding', '2rem 0 2rem 0' ); ?>;">
    			<?php if ( get_option( 'puresimple_logo' ) ) : ?>
    
                	<div class="logo fade-logo">
    					<a>" title="FRANK PIPIA DRYWALL AND FRAMING <?php echo esc_attr( get_bloginfo( 'description' ) ); ?>" rel="home"><img src="<?php echo get_option( 'puresimple_logo' ); ?>" alt="FRANK PIPIA DRYWALL AND FRAMING"/></a>
    				</div>
    
    			<?php elseif ( get_bloginfo( 'description' ) || get_bloginfo( 'title' ) ) : ?>
    
    				<div class="site-info fade-logo" style="background-color: <?php echo get_theme_mod( 'site_infobg', '#fff' ); ?>;">
    					<h1 class="site-title" style="font-size: <?php echo get_theme_mod( 'site_titlesize', '2.75rem' ); ?>;">
    						<a>;" href="<?php echo esc_url( home_url() ); ?>" title="FRANK PIPIA DRYWALL AND FRAMING <?php echo esc_attr( get_bloginfo( 'description' ) ); ?>" rel="home">FRANK PIPIA DRYWALL AND FRAMING</a>
    					</h1>
    					<?php if ( get_bloginfo( 'description' ) ) { ?>
    						<h3 class="site-tagline" style="font-size: <?php echo get_theme_mod( 'site_taglinesize', '1.375rem' ); ?>; color: <?php echo get_theme_mod( 'tagline_colour', '#b9b9b9' ); ?>;"><?php echo esc_attr( get_bloginfo( 'description' ) ); ?></h3>
    					<?php } ?>
    				</div>
    
    			<?php endif; ?>
    
    		</div>
    	</div>
    </div>

    5.Upload the logo-group.php into child theme inside same folder.

    I hope it will help to solve your issue.

    Thread Starter frankpipia.ca

    (@frankpipiaca)

    Thank you kindly I will try it out.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Title’ is closed to new replies.