Site Fully Restored

After some interesting attempts at importing my old posts and comments, followed by some manual post recovery and editing of the MySQL database, it appears my site is completely restored and running on my new host. All files should hopefully have migrated too… but let me know if you spot anything missing.

While I was restoring everything, I took the time to update my theme and make my modifications the proper way using a child theme. I’m still not 100% satisfied with the adjustments; the menu at the top could be reduced in height by a few pixels and the line under the header should always span the page. I am entirely stuck on how to achieve those, so I would be very appreciative if any CSS experts out there want to post fixes for those.

Now, on to posting the insightful blog posts I am so well known for!

3 thoughts on “Site Fully Restored

  1. Here you go.

    superfish.css (line8):
    .menu ul {
    line-height: 0.8em;
    }
    style.css (line 760)
    hr {
    background-color: #595959;
    border: 0 none;
    height: 2px;
    margin: 0;
    }

    • Thanks. That fixed the menu issue, but it appears that is the wrong “hr”. I want the one that underlines heading on (e.g.) the Misc page to go the whole width.

  2. Just added an inline css:

    background-color: #595959;
    border: 0 none;
    height: 2px;
    margin: 0;
    width: 100%;
    display: block;

    to select the upper hr wrap that inside #page hr:first-child { }

    untested, but should work.You are very welcome 🙂

    btw: lesscss ftw -> http://lesscss.org/