• Hi!

    I’d like to see less pink on my site and more of the content, so basically ‘reduce’ the margins. I tried one code in custom css, but it didn’t work properly. I think because of the side-bar.

    Also, if anyone is feeling overly generous, how do I change the font for the header?

    https://www.bbjohnsonwedding.com/

    Kathy

Viewing 1 replies (of 1 total)
  • am assuming you are referring to the empty spaces on left and right of content area.
    for this, remove pink color from body tag. ie, remove background-color: #dd9696; from body.custom-background {.
    now add it to #page along with overflow:

    #page {
    margin: 0 auto;
    position: relative;
    width: 1000px;
    background-color: #dd9696;
    overflow: hidden;
    }

    For site “title” changes, look for:

    .site-title a {
    color: #e55564;
    font-family: Niconne, script;
    font-size: 160%;
    line-height: 90%;
    text-align: center;
    text-decoration: none;
    }

    now change font-family: Niconne, script; to the one of your choice say font-family: Arial, sans-serif;.

    all changes are to be made in style.css file.
    do take backups and work on child theme files if possible.

Viewing 1 replies (of 1 total)
  • The topic ‘Lovebird Theme Margins (Newbie)’ is closed to new replies.