Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #84353
    Ldekker
    Member

    I want text next to my logo, but i have no idea what for CSS i need for that…
    This is my website: http://www.bbautoplanservice.com

    #84413
    Mahesh
    Participant

    Hi @Ldekker,

    I assume you mean to place the Title text to adjacent right to the logo. This feature is included in Catch Responsive theme by default. Go to “Dashboard=> Appearance=> Customize=> Site Identity” and make sure Display Header Text is checked. Then scroll down to bottom and make sure that Check to move Site Title and Tagline before logo is unchecked. Click Save and check in the front page.

    Let me know if this helped.

    Regards,
    Mahesh

    #84498
    Ldekker
    Member

    Hi @mahesh
    Thank you for your reaction!
    This is a bit of what i mean, i want a kind of slogan next to my logo, with swashes and big letters. It is now so white haha.
    Do you have any idea how to do that with CSS, of do i also change de HTML?
    (Sorry for my terribly english!)

    Regards,
    Ldekker

    #84524
    Mahesh
    Participant

    Hi @Ldekker,

    May be following style will help you. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    .site-title {
        display: inline-block;
        -webkit-transform: scale(1, 3.5);
        -moz-transform: scale(1, 3.5);
        transform: scale(1, 3.5);
        margin-top:25px;
      }
    .site-description {
        margin-top:45px;
    }
    @media screen and (max-width: 990px) {
      .site-description {
        margin-top:35px;
      }
    }
    @media screen and (max-width: 480px) {
      .site-description {
        margin-top:30px;
      }
    }

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Tekst next to the logo’ is closed to new replies.