• I am using Colorist theme presently in my site https://kmihir.com
    The title “Solving the Intricacies of Life” is appearing in two lines. I want it to appear in a single line.

    I found the following suggestion in one of the forums, where it was required to be entered into Custom CSS( Jetpack)

    #site-title {
    margin-right: 0;
    }

    However, I can’t figure out where to add. Please suggest how should I proceed.

Viewing 11 replies - 1 through 11 (of 11 total)
  • Davor

    (@davoraltman)

    At the wp-admin area of your website, make sure that Jetpack is installed and activated.

    Navigate to Jetpack > Settings and make sure Custom CSS feature is activated.

    Afterwards, navigate to Appearance > Edit CSS and insert the code there ??

    Thread Starter mihirgovind

    (@mihirgovind)

    I just did that. It doesn’t work. No changes. Do I need to make any changes at the following options that appear alongside the CSS Editor under Publish – PreProcessor, Addon, Mobile Compatible, Media Width

    Davor

    (@davoraltman)

    Try adding the following:

    .container .six.columns {
    width: 60%;
    }

    .container .ten.columns {
    width: 35%;
    }

    That should work for the current site content. Let me know if it helped.

    Thread Starter mihirgovind

    (@mihirgovind)

    thank you so much Davor. That worked. I will be glad if you could also tell me how to align it to the center.

    Davor

    (@davoraltman)

    No problem ??

    Hm, that would require different approach because of the box sizes. If aligning the text of the title is enough, just add to .container .six.columns CSS the following:

    text-align: center;

    If that isn’t what you wanted, please tell me so that I can think of another solution ??

    Thread Starter mihirgovind

    (@mihirgovind)

    That didn’t work. What I want is that the Title (Solving the Intricacies of Life) and the Tagline below it (Life rocks…) should be placed at the centre of the screen (in the upper region, of course)

    Thread Starter mihirgovind

    (@mihirgovind)

    Also, Davor ; I have integrated a master slider in header.php so that it appears on the home page. But, the About page also shows an empty block in the region where the master slider was supposed to be if it were present there. How can I remove the empty block ?

    <?php if ( is_home() ):?>

    <?php masterslider(1); ?>

    <?php endif; ?>

    </br

    Davor

    (@davoraltman)

    If you could try adding the following:

    .site-title {
    text-align: center;
    }

    .container .six.columns {
    width: 80%;
    }

    .container .ten.columns {
    width: 15%;
    }

    Also, I can see that that the slider is displayed properly?

    Thread Starter mihirgovind

    (@mihirgovind)

    Yeah, finally it worked ??
    And, the slider does appear perfectly in the home page. But, what I am saying is that once I go to any other page ( be it any of the Posts or the About Page) then I see blank space between the header and the content. That is what I wish to remove.

    Davor

    (@davoraltman)

    Ah, I see. I noticed that this space is caused by 4
    tags but I am not sure what’s adding them ??

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Title Split into Two lines instead of One’ is closed to new replies.