Mini frontpage title size
- Posted by panos (3) Offline
Hello.
I am using mini frontpage module and i wanted to ask if there is a way to change title's size, color, make them bold etc.
Thank you in advance!
11 years 10 months ago #1
by panos
I am using mini frontpage module and i wanted to ask if there is a way to change title's size, color, make them bold etc.
Thank you in advance!
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5260) Offline
Hi ,
Please try to add this css anywhere on your template css files :
11 years 10 months ago #2
by TemplatePlazza
Please try to add this css anywhere on your template css files :
.mfp-introtitle a {
font-size:40px!important;
color:#cccc00;
font-weight:700;}
Please Log in or Create an account to join the conversation.
- Posted by panos (3) Offline
Thank you very much for your prompt reply!
It works fine with your code!
11 years 10 months ago #3
by panos
It works fine with your code!
Please Log in or Create an account to join the conversation.
- Posted by panos (3) Offline
Can you also tell me if I can link the introtext to the article? The thub photo and the title are links ok, but how about the introtext.
11 years 10 months ago #4
by panos
Please Log in or Create an account to join the conversation.
- Posted by erwinschro (1034) Offline
I won't suggest it but it's up to you to link your introtext
As an example you choose the following
Layout = Default
Other Article Placement = Bottom
then you need to edit the following file
/mod_minifrontpage/themes/default/tmpl/bottom.php
find this line
add link for it so that line will look like
that's it. It will be the same for other layout and other article placement option, just find the correct file to edit.
11 years 10 months ago #5
by erwinschro
As an example you choose the following
Layout = Default
Other Article Placement = Bottom
then you need to edit the following file
/mod_minifrontpage/themes/default/tmpl/bottom.php
find this line
echo $item->introtext;
add link for it so that line will look like
?><a href="<?php echo $item->link; ?>"><?php echo $item->introtext; ?></a><?php
that's it. It will be the same for other layout and other article placement option, just find the correct file to edit.
Please Log in or Create an account to join the conversation.