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;
Where in the editor do i find this?
thanks rdellconsulting
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.
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: http://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.
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 http://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.