• Resolved rjsarli

    (@rjsarli)


    Hello all,

    How do i move the tagline closer to my logo which is on the left side of the page

    Thanks,
    RJ

Viewing 15 replies - 1 through 15 (of 17 total)
  • Try this CSS:

    .navbar-wrapper .navbar h2 {
      color: #0088CC;
      float: right;
      font-style: italic;
      line-height: 19px;
      padding-right: 5px;
      text-align: left;
    }

    If not exactly it, you may need to play with:

    margin-left: 0px;
    padding-left: 0px;

    Thread Starter rjsarli

    (@rjsarli)

    Where in the editor do i find this?

    thanks rdellconsulting

    Thread Starter rjsarli

    (@rjsarli)

    Would it be in the heade.php?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You have a “Custom CSS” part of the dashboard, don’t you? You put it in there.

    Thread Starter rjsarli

    (@rjsarli)

    Also how do I take out the gray box behind the menu?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try creating a new thread for this.

    Hello,
    I’d like to add articles in the right sidebar of my pages, but not appearing in my home page. How can I solve that?
    my site: https://www.c2perspectives.fr

    @valdenaireb, Can you start a new topic please.

    @andrew, on some WP Forums there seems to be a facility to close the thread. Is this something we can setup?

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    If that were necessary then yes. But it really isn’t and I don’t think one errant post means it should be closed.

    Thanks for your answer

    just wanted to follow up on this…

    I can’t seem to get the tagline any closer to the social icons, even though I’ve reduced that section to 200px using:

    .row-fluid .span5 {
    width: 200px;
    }

    any ideas?

    Thanks

    i tried your css code and it definitely moved the tagline, but if i want to move it completely to be under the logo, how could i do that?

    also, i’d like to remove the italics on it and apply bold. i tried this css:

    .navbar-wrapper .navbar h2 {
      float: left;
      font-style: bold;
      line-height: 19px;
      padding-right: 5px;
      text-align: left;
    }

    and it moved the tagline some, but not to where i want. forgive me if i’m a little newbie on all this css stuff.

    my site is https://www.auditbucket.com by the way

    Rather than move the tagline, simply do not add one. Instead, add something like the following code to your child theme’s function.php file:

    add_action('__after_logo','my_tagline',0);
    function my_tagline(){
       ?>
       <span style="put any styling css here;">
       <?php
           printf('Put your tagline here.');
       ?>
       </span>
       <?php
    }

    Hi, this topic has been marked as resolved and is even linked to in the FAQ section on the website, but unfortunately the proposed solutions don’t really address the original issue.

    @rdellconsulting answer moves the tagline into the middle of the navbar and @johnm92008 solution completely removes the taglines and adds a new section.

    What would be nice is a real solution that places the tagline directly under the blog title on the left side of the page.

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘move the tagline of site to the left’ is closed to new replies.