- This topic has 25 replies, 3 voices, and was last updated 5 years, 12 months ago by
Leo.
-
AuthorPosts
-
June 12, 2020 at 9:49 am #1325341
Elio Martinez
Maybe is some cache issue. I am seeing it right now. I have clear the cache right now, please check again.
Update: I am thinking that you are check the home page. You have to check a category or tag page and you will see it.
June 12, 2020 at 10:02 am #1325356Leo
StaffCustomer SupportSorry I’m just jumping in here as I couldn’t track down David.
Are you trying to remove the | appearing before the Author?
As for margin issue, try this:
.entry-meta { margin-top: 0; }June 12, 2020 at 10:06 am #1325359Elio Martinez
Margin issue resolved, thanks.
I need the | between the author and the date, like as I have in single pages or the home.
June 12, 2020 at 10:15 am #1325371Leo
StaffCustomer SupportCan you edit David’s CSS here:
body:not(.single) .entry-header .entry-meta span:not(:last-child):after { content: '|'; margin: 0 5px; }To this:
body:not(.single) .entry-header .entry-meta span.author-name:after { content: '|'; margin: 0 5px; }Then remove:
|from your code here:
https://generatepress.com/forums/topic/customize-mobile-featured-image-archives/#post-1323578June 12, 2020 at 10:24 am #1325386Elio Martinez
That do the trick!
Thanks a lot!
June 12, 2020 at 10:30 am #1325389Elio Martinez
One more thing…
As I deleted the
|from my code here: https://generatepress.com/forums/topic/customize-mobile-featured-image-archives/#post-1323578In single.php there is no
|between the date and the author: https://prnt.sc/synv9fJune 12, 2020 at 12:03 pm #1325470Elio Martinez
I solved it doing this (don’t know if is the better way todo do it, but works):
body:not(.archive) .entry-header .entry-meta span.author-name:before { content: '|'; margin: 0 5px; }June 12, 2020 at 12:33 pm #1325518Elio Martinez
Sorry to open this again, but with that css on the homepage I see the
|before the author.It’s easy changing something from this php? https://generatepress.com/forums/topic/customize-mobile-featured-image-archives/#post-1323578
In homepage and archives is author and date, but in single is in reverse order: date and author. Maybe it is easy change something from to show in the same order always.
June 12, 2020 at 12:44 pm #1325530Leo
StaffCustomer SupportGive this CSS a shot:
.single .entry-meta { display: flex; } .single .posted-on { order: 2; padding-left: 5px; }June 12, 2020 at 12:46 pm #1325533Elio Martinez
Solved!
THANKS
June 12, 2020 at 12:52 pm #1325541Leo
StaffCustomer SupportNo problem 🙂
-
AuthorPosts
- You must be logged in to reply to this topic.