[Resolved] Entry Meta Config / Sidebar Heading Changes

Home Forums Support [Resolved] Entry Meta Config / Sidebar Heading Changes

Home Forums Support Entry Meta Config / Sidebar Heading Changes

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #568035
    Mr McMarry

    Hey there :

    This is what i want :

    Post Title
    Category , Tags , Post Published date , Author Name

    and yeah i dont want to display featured image in any post i mean featured image is placed above title but i dont want to display it in any post so please tell me css of it.

    and i want to make my sidebar heading like this :

    and done this so far i want that bottom-border :

    Thank You

    #568075
    David
    Staff
    Customer Support

    For the post meta layout, is this required for the blog/archive or the single posts? Or both?

    Featured images can be switched on/off in the Customiser > Layout > Blog > under featured images where it can be set for archives and posts.

    The sidebar styling you can try this:

    .sidebar .widget .widget-title {
        border-bottom: 1px solid;
    }
    #568634
    Mr McMarry

    Entry Meta : Both make it customize able so i can change it if i want to in future.
    Sidebar Headings :

    .sidebar .widget .widget-title {
    border-bottom: 1px solid;
    }

    its Didn’t Help Me with what i want

    #569454
    David
    Staff
    Customer Support

    For the meta see here, where Tom has provided a GIST, you will need to re-order the meta in the PHP.

    https://generatepress.com/forums/topic/all-meta-in-one-single-line/

    Getting the bottom border to extend the width of the sidebar is going to be tricky, as you have the title set to inline-block to create the angled background. The only idea i have at the moment is to do this:

    .sidebar .widget {
    overflow: hidden;
    }
    
    .sidebar .widget .widget-title:before {
    content: '';
    position: absolute;
    display: block;
    border-bottom: 2px solid #f7f6f6;
    width: 300%;
    bottom: 0;
    }
    #571441
    Mr McMarry

    Thank You David
    Working Perfect

    Edit: Resolved

    #571533
    David
    Staff
    Customer Support

    Glad you got it working!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.