Viewing 1 replies (of 1 total)
  • Look into your css-file and search for:

    .site-title {
    font-size: 50px;
    margin: 0;
    display: inline;
    }

    replace the above with:
    .site-title {
    display: none;
    }

    or… if u want to use an image instead:
    .site-title {
    background: url(url image);
    background-repeat: no-repeat;
    height: the height of the image;
    }

    After changing it you might want to or need to change the description as wel.. they look like:

    .site-title a,
    .site-title a:hover {
    color: #211b1a;
    }

    .site-description {
    color: #211b1a;
    font-size: 22px;
    display: inline;
    margin: 0 0 0 20px;
    }

    On my own blog (https://melodymusic.nl) the above items all got ‘display none’ after i made a header in wich the title and description got a location…

Viewing 1 replies (of 1 total)
  • The topic ‘?How can I change the site-title?’ is closed to new replies.