CSS won't save.

  • Unknown's avatar

    I want to customize my blog by making changes to CSS but once I make changes and clock save save, nothing is applied and the original theme is still dominant.

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

  • Unknown's avatar

    Also, the theme I am using is Spun.

  • Unknown's avatar

    It looks like you have the following CSS saved:

    body {
        font-family: arial, helvetica, sans-serif;
        font-size: 14px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    a {
        text-decoration: none;
    }
    
    strong {
        font-style: italic;
        text-transform: uppercase;
    }

    Were you able to get this to work correctly? Let me know if you’re still having trouble or if you need help with any of the CSS customizations!

  • Unknown's avatar

    It did save, however, it doesn’t apply to the blog! I’m still working on trying to customize it so that my images are displayed larger than they are. Thanks for replying and helping!

    I just can’t get it to apply!

  • Unknown's avatar

    Hi there,

    It looks like your CSS was saved, but you needed a few more details. Try this:

    body p {
        font-family: arial, helvetica, sans-serif;
        font-size: 14px;
    }
    
    h1 {
        font-size: 2em !important;
    }
    
    h2 {
        font-size: 1.5em !important;
    }

    As for these, you might need to be a bit more specific. What you do want to change with this?

    a {
        text-decoration: none;
    }
    
    strong {
        font-style: italic;
        text-transform: uppercase;
    }

    Feel free to reach out if you have any questions!

  • The topic ‘CSS won't save.’ is closed to new replies.