RE: K2 Lite customization

  • oops, my blog is http://mytestcitizenblog1.wordpress.com/

    I’m trying to eliminate the gap above my header. Where in the CSS would fix this? Thanks!

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

  • First off, it is recommended that:

    a) when you add/modify an existing theme CSS, you don’t copy the whole thing in the CSS editor; just add your changes/additions.

    b) if you are going to add the whole CSS in the CSS editor, then check the “start from scratch” radio button.

    Now, in your #page definition, change the padding property to this:

    padding: 0 0 10px;

    so, the whole definition reads like this:

    #page {
    background:white;
    text-align:left;
    position:relative;
    width:780px;
    border:1px solid #ddd;
    border-top:none;
    margin:0 auto;
    padding: 0 0 10px;
    }
    
    That should take care of the gap.
    
    HTH
  • The topic ‘RE: K2 Lite customization’ is closed to new replies.