Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Moa

    (@voldeobum)

    I seem to have solved it by changing the name of the page templates, and choosing the “new templates” for each page. No idea why it’s working now, but it is.

    Forum: Fixing WordPress
    In reply to: Dashboard Lost
    Moa

    (@voldeobum)

    If you log in, wait for the craigslist (I feel your pain) version of your blog to load, and then go to https://www.yourdomain.com/wp-admin/, where you do end up then?

    Moa

    (@voldeobum)

    Just a guess, but I think this is a CSS issue. There doesn’t seem to be any bottom margin or padding applied to the p element, which makes all the paragraphs sit right underneath each other.

    In your theme’s style.css file, change this:

    #article_body p {
    line-height:1.24em;
    padding-bottom:0;
    }

    To something like this:

    #article_body p {
    line-height:1.24em;
    padding-bottom: 1em;
    }

    Thread Starter Moa

    (@voldeobum)

    This forum is very… convenient. As soon as I post a question here, I invariably find the answer by myself within a few hours.

    One solution to my problem was to edit the /wp-includes/script-loader.php file. I changed the line
    $styles->add( 'media', '/wp-admin/css/media.css'), array(), '20081210';

    to
    $styles->add( 'media', '/wp-admin/css/media.css');

    and now it’s working. Maybe not the best solution? Perhaps changing the date (?) would’ve worked too? Oh well.

Viewing 4 replies - 1 through 4 (of 4 total)