Page 1 of 1

Align description & date

Posted: 17 Aug 2022, 05:04
by TristanJo
Hi Carl, I have two questions. 

First, I want to left-align only the description.  
2AD40176-29F9-4B45-8E22-247F26D4223C.jpeg
2AD40176-29F9-4B45-8E22-247F26D4223C.jpeg (259.1 KiB) Viewed 1333 times

Re: Align description & date

Posted: 17 Aug 2022, 05:35
by mjau-mjau
TristanJo wrote:First, I want to left-align only the description.
That will look strange unless your description is long, and even then I can't be sure ...
Image
In Settings > Custom > Custom CSS, add this:
Code
.subheader {
  text-align: left;
}
TristanJo wrote:Second, I want the date specified to be displayed. (y.m.d) Z
Go to Settings > Advanced > Date Format, and replace "timeago" with another format or add a custom format.

Re: Align description & date

Posted: 17 Aug 2022, 05:43
by TristanJo
mjau-mjau wrote:
TristanJo wrote:First, I want to left-align only the description.
That will look strange unless your description is long, and even then I can't be sure ...
Image
In Settings > Custom > Custom CSS, add this:
Code
.subheader {
  text-align: left;
}
TristanJo wrote:Second, I want the date specified to be displayed. (y.m.d) Z
Go to Settings > Advanced > Date Format, and replace "timeago" with another format or add a custom format.
Code
.subheader {
  text-align: left !important;
}
!important works~ thx karl~