Viewing 5 replies - 1 through 5 (of 5 total)
  • Did you want the space in every post or just in that particular heading? If this is the case I would be tempted to add a margin to the top of the .entry class in your CSS.

    In your CSS you will see it’s set to 10px in all directions both for the margin and the padding
    I’d be tempted to try changing a few px at a time to see how it looks. You might like to try the padding instead.

    In actual fact you seem to have a problem in the CSS for that class. The { is in the wrong place so it will not work . It should look like this.

    .entry
    {
    margin: 10px;
    padding: 10 px;

    }

    Thread Starter ugua

    (@ugua)

    it is allready this
    {
    .entry
    margin: 10px;
    padding: 10 px;

    }

    .entry
    {
    margin: 10px;
    padding: 10 px;

    }

    It should be written like this!!!

    The code is wrong in that class in the CSS. I noticed after I posted my previous comment. Sorry I seem to be posting at the same time as you.

    Thread Starter ugua

    (@ugua)

    ty guys

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘space from the title’ is closed to new replies.