Couple of questions about fixing the css in mini front page news on the home page
- Posted by msgdesign (20) Offline
I would appreciate your help in giving me the css code to help:
1. How do I add a little space above the created date (below the title)
2. The news content inside the box looks a little blurry anyway to fix this?
3. Within the news content, I would like to change the link color and weight of the type - how do I do this?
4. Anyway to change the style of continuing after the news article ([...} I would just prefer (...) without the brackets.
thanks for your help!
10 years 1 week ago #1
by msgdesign
1. How do I add a little space above the created date (below the title)
2. The news content inside the box looks a little blurry anyway to fix this?
3. Within the news content, I would like to change the link color and weight of the type - how do I do this?
4. Anyway to change the style of continuing after the news article ([...} I would just prefer (...) without the brackets.
thanks for your help!
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
Hi,
change that to
10 years 1 week ago #2
by TemplatePlazza
Please add this code to your template css file :1. How do I add a little space above the created date (below the title)
.mfp-date-author {margin-top:10px!important;}
Please add this code to your template css file :The news content inside the box looks a little blurry anyway to fix this?
.minifrontpage-default .mfp-table-cell p {color:111!important}
Please add this code to your template css file :Within the news content, I would like to change the link color and weight of the type - how do I do this?
.minifrontpage-default a.mfp-readon{
background:blue!important;color:red!important}
Please open the file root/module/mod_minifrontepage/helper.php with your favorite php editor, around lines 445 you will see this code :Anyway to change the style of continuing after the news article ([...} I would just prefer (...) without the brackets.
$endText = (strlen($strip) > $limit) ? " [ ... ]" : "";
$endText = (strlen($strip) > $limit) ? " ... " : "";
Please Log in or Create an account to join the conversation.
- Posted by msgdesign (20) Offline
All your replies worked perfectly , except #3
3. Within the news content, I would like to change the link color and weight of the type - how do I do this?
(your reply changed the "read more" css).
I would like the links within the news content boxes (ie please see third box: "South Shore Dermatology Physic") to match the weight and line length of the other non-linked type. I plan to use only color to show the links.
thank you!
10 years 1 week ago #3
by msgdesign
3. Within the news content, I would like to change the link color and weight of the type - how do I do this?
(your reply changed the "read more" css).
I would like the links within the news content boxes (ie please see third box: "South Shore Dermatology Physic") to match the weight and line length of the other non-linked type. I plan to use only color to show the links.
thank you!
Please Log in or Create an account to join the conversation.
- Posted by msgdesign (20) Offline
No need to respond, I am planning on using another news module this time.
Thanks again
10 years 1 week ago #4
by msgdesign
Thanks again
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline