Reduce font size and line spacing in Music State

Support help forum dedicated to free and commerical templates for Joomla 3 and 2.5 version.
GK User
Mon Sep 08, 2014 3:57 pm
Hi Guys,

How to reduce line spacing of the text info

How to reduce and bold the text info of the article

How to reduce the Title of the article (not the text info)

http://misslistings.com/index.php/event ... -tour-2015


thanks
User avatar
Junior Boarder

GK User
Mon Sep 08, 2014 5:31 pm
User avatar
Platinum Boarder

GK User
Mon Sep 08, 2014 5:36 pm
ad 1)
Code: Select all
 <p>The Pop phenomena that is One Direction, is coming to Dubai for their inaugural show.</p>
<p>&nbsp;</p>
<p>One Direction are the teen pop sensation consisting of performers Niall Horan, Zayn Malik, Liam Payne, Harry Styles and Louis Tomlinson, coming from London, for their first show in the Middle East here in Dubai. One Direction took the pop music world by storm after winning third place in the seventh X Factor competition.</p>
<p>&nbsp;</p>


a) As you see there is "<p>&nbsp;</p>" between, so use <br> instead
b) Default margins for <p> element is :
Code: Select all
p {margin: 0.5em 0 2em; line-height: 1.9;}

so you have to change values, for example to those
Code: Select all
p {margin: 0.5em 0px 0.5em; line-height: 1.5;}


ad 3) Article Title, use and customize this code
Code: Select all
article header h1, article header h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 48px;
}
User avatar
Platinum Boarder

GK User
Mon Sep 08, 2014 5:39 pm
p.s.
How to reduce and bold the text info of the article

In this article there is no <b> or <strong> - so what exactly you wanted with them?
User avatar
Platinum Boarder

GK User
Mon Sep 08, 2014 6:12 pm
wow that is a clear answer and working very well...Thanks

Just one more quesion, how can I transfer the date and make it a bit bigger and bolder as shown in the image below.

Image

https://www.dropbox.com/s/n20i5insjd98dq2/dateforarticle.jpg?dl=0
User avatar
Junior Boarder

GK User
Wed Sep 10, 2014 10:28 pm
To move date it request template article view customization (in php file)
To change font size/color etc. --
Code: Select all
.date-hidden > time {
    color: red;
    font-weight: 700;
}
User avatar
Platinum Boarder


cron