Title line,Tagline, and Menu

  • Two questions:
    1. I used a theme, and then changed the pages order. (The original Home page is now a Post page, which I want to remove) and the Home page is a different one). Accessing the webpage brings the last menu page (Post) as the first page, not the Home page.
    2. I want to add a logo/icon/pic to the Title line.
    3. I want to change the Tagline letters to Black and Bold.

    how do I do that?

    The blog I need help with is: (visible only to logged in users)

  • Hi there!

    Let’s take a look.

    It looks like all you need to do is change the menu you created to include the home page as the first page or you can create a static home page (if your theme allows – when you follow the steps below, the customizer will tell you if you can create a Static homepage when you get to the menus).
    https://en.support.wordpress.com/pages/front-page/

    These steps will guide you through whatever menu type that you need.

    Let us know how it goes!

    Thanks,

  • I apologize, I submitted my response before addressing your other questions.

    2. You can set a site icon on the “Site Info.” tab. Here are some steps to guide you through that
    https://en.support.wordpress.com/site-icons/

    3. Sometimes to change the color of the font you can change the site colors as displayed here
    https://en.support.wordpress.com/custom-design/custom-colors/
    but usually to isolate a single line of text, you’ll have to add some code to your CSS, which is also in the customizer
    https://en.support.wordpress.com/custom-design/css-basics/

    Let us know how it goes!

    Thanks,

  • Thanks.
    The first problem was solved. Thank you.

    The second – I want to show the logo on the line of the site title, starting with the logo and then the site title. How do I do that?

    The third question – I want to change the size and make the font bold of the Site Tagline, and I created the below CSS, but did not see the change. How should I change the CSS to apply the changes?
    Thank you so much.

    .entry-title {
    font-size: 25px;
    line-height: 45px;
    }

    .entry-tagline {
    font-size: 20px;
    font-weight: bold;
    color: black !important;
    }

  • Hi, for the site description/tagline font size and bold, add the following and you can adjust the font size as desired.

    .site-description {
      font-weight: bold;
      font-size: 16px;
    }

    For the logo, the best way to do this is to add it with CSS instead of through the Site Identity in the Customizer as we have more control over placement. I randomly grabbed an image out of your Media Library that looks like it is your logo. Add this to your custom CSS and see what you think.

    .site-branding {
      background: url('https://istandupstraightandproud.files.wordpress.com/2017/10/cropped-cropped-presentation21.jpg') no-repeat scroll left top / contain;
      padding-left: 100px;
    }

    I used the web inspector built into my browser to find the relevant CSS. If you are not familiar with the web inspector in your browser, take a look at our support page on How to Find Your Theme’s CSS where you will find some brief screencasts to get you started with it. I find it an invaluable tool when working with CSS.

  • THANK YOU SO MUCH !!!
    All works great. I really appreciate your help.

  • The topic ‘Title line,Tagline, and Menu’ is closed to new replies.