Change font size

Premium sports magazine Joomla template with clean, easy to customize and unique design.
GK User
Mon Aug 13, 2012 6:53 am
How do I change the body font size of itemFullText?
User avatar
Fresh Boarder

GK User
Mon Aug 13, 2012 7:57 am
For K2 item full text use below css code in css/override.css located in template folder. Also enable css override from template settings > advanced settings > css override "on".

change 14px as you require.
Code: Select all
.itemFullText {font-size: 14px;}


In case you need intro text as well
Code: Select all
.itemIntroText {font-size: 14px;}


See you around...
User avatar
Platinum Boarder

GK User
Mon Aug 13, 2012 10:28 am
Thanks for the FAST response!
I tried, but no avail. I emptied the cache... still the font size hasn't changed. have I entered the code correctly?
Code: Select all
/*

#------------------------------------------------------------------------

# League News - February Joomla! template (for Joomla 2.5)

#

# Copyright (C) 2007-2012 Gavick.com. All Rights Reserved.

# License: Copyrighted Commercial Software

# Website: http://www.gavick.com

# Support: [email protected]

*/



/* Here you can include your override CSS styles */



.gkIsWrapper-gk_league_news1 .gkIsMoreNews {

display: none !important;

}

.itemFullText {font-size: 14px;}

.itemIntroText {font-size: 14px;}
User avatar
Fresh Boarder

GK User
Mon Aug 13, 2012 10:45 am
I believe default size is 14px ;)

Try changing the value. Also this is valid for only K2 articles unless I have understood your request wrong.

See you around...
User avatar
Platinum Boarder

GK User
Tue Aug 14, 2012 11:24 am
AHA it worked :) Thank you muchly.

Now I need to work out how to left align the images instead of having them centered above the text in the article layout. The captions are not lining up under the centered image, they justify right.
User avatar
Fresh Boarder

GK User
Wed Aug 15, 2012 4:21 am
For image to be on left use below.
Code: Select all
.itemImageBlock { float:left!important;}
or
.itemImageBlock img { float:left!important;}

For Caption to center it use "center" for left use "left".
Code: Select all
.itemImageCaption { text-align: center!important;}


See you around...
User avatar
Platinum Boarder


cron