Archived topic
Need some Help in customization
3 replies · Started by Shivam on September 6, 2019
Hey team, I am setting up a new website with Geneartepress and i need some help...
1. There are two dates and author meta coming on the homepage as well as sing article page and I want to remove the one which is coming with gravatar. (Click here to check screenshot)
2. As well as please give me code to show updated dated on Article as well as the search engine.
3. How can I design my widget title something like this (click here to check website)
4. How to change tiltle size of the heading on the homepage (Click here to check screensshot
Hi there,
1 and 2. Can you confirm what meta and how you want it displayed for a. The home/archives and b. the Single post.
Currently i cannot see the gravatar.
E.g Archive & Post: Gravatar | Updated Date | Comments
3. First add this PHP Snippet:
add_filter( 'generate_start_widget_title', function() {
return '<h2 class="widget-title"><span>';
});
add_filter( 'generate_end_widget_title', function() {
return '</span></h2>';
});
Then this CSS:
.widget-title {
border-bottom: 2px solid;
}
.widget-title span {
display: inline-block;
padding: 4px 6px;
background-color: #000;
color: #fff;
font-size: 14px;
text-transform: uppercase;
}
.widget-title,
.widget-title span {
line-height: 1;
}
4. This CSS:
.blog .entry-title, .archive .entry-title, .search .entry-title {
font-size: 20px;
}
Hey David, please check my homepage here
I want to make the list of posts something like this website
Special note - Please check the mobile version of that site too. I want the exact same look how it comes on desktop and mobile just like that website..
Hi there,
can you raise a new Topic. I would advise raising it with a Title that is relevant to the support. It will make it easier for you to find the answers in the future.