Shape 5

Joomla Templates => Shenandoah - Club => : bhmuse December 15, 2013, 01:22:00 AM



: Article title and detail
: bhmuse December 15, 2013, 01:22:00 AM
I have 2 questions:

1. Where can I edit article title font and size? I used firebug and it gave me no specific location.

2. How can I change the color of these article details?

category name:
Published:
Author:


: Re: Article title and detail
: mikenicoll December 16, 2013, 06:36:30 PM
Hello,

If you post a URL I can give you the CSS location directly for your server.

-Mike


: Re: Article title and detail
: bhmuse December 17, 2013, 12:39:45 PM
Hi,

here is the link:
http://allaboutscreenplay.com/demo/


: Re: Article title and detail
: mikenicoll December 17, 2013, 06:51:09 PM
1) You can control that here:

com_content.css - line 73

.contentheading {
    float: left;
    font-size: 1.2em;
    font-weight: bold;
    line-height: normal;
}

2) You would need to use Firebug to identify the class and add a color to the css like so

.create {
color: #ff0000 !important;}

-Mike


: Re: Article title and detail
: bhmuse December 18, 2013, 08:15:16 AM
Thanks,

I used firebug as you said and found the solution. To make the mentioned changes, I edited "content.css".

1. To change the font and size of article title.:

.contentheading  {
  font-size:1.2em;
  float:left;
  font-family:tahoma,arial !important;
  font-weight:bold;
  line-height:normal; }

To change the color of article title:
a.contentpagetitle  {
  font-size:1.3em;
  font-family:tahoma,arial !important;
  color: #2f78ab !important;

2. To change the color of article info (category name, created, and created by), I added these codes:

.create {
color: #ff0000 !important;}

.createdby {
color: #ff0000 !important;}

.category-name {
color: #ff0000 !important;}


: Re: Article title and detail
: mikenicoll December 18, 2013, 07:42:53 PM
Exactly,

Now you know how to identify and edit CSS as needed, which will take you a long way when making customizations.

-Mike