• Resolved craig statham

    (@craig-statham)


    Hi all

    Couple of small issues on the title page of my site – https://www.stathamresearch.com.

    I need to either remove the black sidebar on the left of the page, or move the text right to it can all be read.

    On the same page I’d like to remove the date (in this case December 30, 2013) and ‘1 comment’.

    Many thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • If it has a date, then it is a post and not a page. You need to know the difference between pages and posts.

    To remove the date, you will have to modify that in the theme’s templates (you can simply comment out the date).

    the black thing on the left is all CSS. You modified CSS should look like:

    .site:before {
        width: 222px;
    }
    .site:before {
        content: "";
        display: block;
        height: 100%;
        left: 0;
        min-height: 100%;
        position: absolute;
        top: 0;
        width: 182px;
        z-index: 2;
    }

    Thread Starter craig statham

    (@craig-statham)

    Thanks, but it’s still there. Here’s what I added, with the bits from above and below copied:

    .content-sidebar {
    margin-left: -29.04761904%;
    width: 29.04761904%;
    }

    .site:before {
    width: 222px;
    }
    .site:before {
    content: “”;
    display: block;
    height: 100%;
    left: 0;
    min-height: 100%;
    position: absolute;
    top: 0;
    width: 182px;
    z-index: 2;
    }

    #secondary {
    background-color: transparent;
    border: 0;
    clear: none;
    float: left;
    margin: 0 0 0 -100%;
    min-height: 100vh;
    width: 122px;
    }

    Thread Starter craig statham

    (@craig-statham)

    Sorted, many thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘couple of little changes’ is closed to new replies.