How do I change to new template and work on it while having current blog active?

  • Unknown's avatar

    @ccfarwell, I can help with the CSS.

    To get the dashed boarder you are looking for use this class on a div around your recipe.

    .easyrecipe {
    font: 12px Verdana, Arial, Geneva, sans-serif;
    border: 1px dashed #666;
    color: #666;
    padding: 10px;
    background: #FFF;
    }

    The circle around the date uses a boarder radius of 50% on a square shape to look like a circle.

    .date {
    border-radius: 50%;
    width: 55px;
    height: 55px;
    }

    If you have other css questions I’d start a new thread in the css forum as ccfarwell suggests. You’ll get better and faster help with that topic there.

  • Unknown's avatar

    MRDIRBY –
    Thanks so much for your help!

  • The topic ‘How do I change to new template and work on it while having current blog active?’ is closed to new replies.