Minifrontpage Pro Issue
- Posted by Mehmet Tas (28) Offline
Hello,
In the module settings, Show Article's Date is "NO". But the date appears under the MORE ARTICLES tab.
Please fix this.
4 years 10 months ago #1
by Mehmet Tas
In the module settings, Show Article's Date is "NO". But the date appears under the MORE ARTICLES tab.
Please fix this.
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5261) Offline
Hi Memotas,
Please add this code to in the css adjustment tab :
4 years 10 months ago #2
by TemplatePlazza
Please add this code to in the css adjustment tab :
.mfp_default_more_articles .mfp_date { display:none!important}
Please Log in or Create an account to join the conversation.
- Posted by Mehmet Tas (28) Offline
Thank you for your interesting.
I want to make a mark on the left side of the headlines in the MORE ARTICLES tab.
For Example:
MORE ARTICLES
* News 1
* News 2
* News 3
Could you help me?
4 years 10 months ago #3
by Mehmet Tas
I want to make a mark on the left side of the headlines in the MORE ARTICLES tab.
For Example:
MORE ARTICLES
* News 1
* News 2
* News 3
Could you help me?
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5261) Offline
Hi memotas, Did you mean to add asterisk symbol to every list item or you just simply want to add a list bullet?
If you want to add asterisk you can add this code in the css adjustment tab :
if you just want to simply add list bullet then simply add this code :
Hope this helps
4 years 10 months ago #4
by TemplatePlazza
If you want to add asterisk you can add this code in the css adjustment tab :
.mfp_default_more_articles ul li {
padding-left:10px!important;
}
.mfp_default_more_articles ul li:before {
content: "*";
margin-left:-10px;
float:left
}
if you just want to simply add list bullet then simply add this code :
.mfp_default_more_articles ul {
margin-left:15px!important;}
.mfp_default_more_articles ul li {
list-style: disc!important;
display:list-item!important
}
Hope this helps
Please Log in or Create an account to join the conversation.