• I have two issues that I’m hoping to get help with! Im currently using the Lovecraft theme.
    1.
    When I view my blog posts by category, a grey block appears at the header of the post including the words “CATEGORY: BEAUTY (PAGE 1 OF 15)”. The words are hidden behind my header images.

    https://redwhitedenim.com/category/beauty/

    I’d like to completely delete the text AND the grey block from this view. I’d like for page to look the same as my home page does.

    https://redwhitedenim.com

    2.
    When I click on a single post, the area that contains my post covers almost half of my header images.

    https://redwhitedenim.com/beauty-blender/

    Again, I would like for this single post view to be formatted the same way my home page is. Is there a way to move this area down so that it covers less of my header images?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi jendaddario

    Try this code for first issue maybe it will help
    you can increase and decrease the height of div.

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    element.style {
        display: block;
        text-align: start;
        float: left;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        z-index: auto;
        width: 1563px;
        <strong>height: 320px;</strong>
        margin: 0px;
        overflow: hidden;
    }
    .page-title {
        padding: 23px 0 0;
        height: 60px;
        background: rgba(0,0,0,0.6);
        display: none;
    }
    .post {
        display: block;
        background: #fff;
        border: 1px solid #ddd;
        position: relative;
        margin: 5% 0 0 0;
    }
    /*****************use code for second issue**************************/
    .page-title {
        padding: 23px 0 0;
        height: 60px;
        background: rgba(0,0,0,0.6);
        display: none;
    }
    .post {
        display: block;
        background: #fff;
        border: 1px solid #ddd;
        position: relative;
        margin: 5% 0 0 0;
    }
    Thread Starter jendaddario

    (@jendaddario)

    Thank you so much. Would you please tell me where to place this code? Thanks!

    Thread Starter jendaddario

    (@jendaddario)

    Sorry, please ignore that. I added the first code and it appeared to take care of both problems.

    Just one more question, how do I adjust how high up the white block starts on the page (the area that contains the post) You mentioned :increase and decrease the height of div” but I wasn’t sure where to do that. Thanks so much!

    Hi jendaddario

    i have solved your problem but i cant show you because i am not able to send any screenshot

    [Moderator Note: Please do not request to contact someone outside of the forums.]

    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove Category Headding/Block’ is closed to new replies.