Site logo

Archived topic

Entry Meta Config / Sidebar Heading Changes

5 replies · Started by Mr McMarry on May 5, 2018

Viewing posts 1–6 of 6

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

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;
}

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

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;
}

Thank You David
Working Perfect

Edit: Resolved

Glad you got it working!

This archived topic is closed to new replies.