-
AuthorPosts
-
bramewave Friend
bramewave
- Join date:
- December 2007
- Posts:
- 76
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 27
- Thanked:
- 2 times in 1 posts
February 18, 2008 at 7:37 pm #125794I want to set my default color to blue and when I open my page the home page is orange and the other pages are blue. I also want to set my font size to be larger, any ideas? http://www.bramewavestudios.com
mfcphil Friendmfcphil
- Join date:
- September 2007
- Posts:
- 2866
- Downloads:
- 3
- Uploads:
- 218
- Thanks:
- 211
- Thanked:
- 388 times in 133 posts
February 18, 2008 at 8:54 pm #239455Hi there Bram
To change to default go to Template/Ja Avian/ja_vars.php and change the default colour to blue.
Fonts are in the same ja_vars.php file the default setting is 3
Remember to clear the caches and you should have it blue 😉
bramewave Friendbramewave
- Join date:
- December 2007
- Posts:
- 76
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 27
- Thanked:
- 2 times in 1 posts
February 18, 2008 at 10:52 pm #239464Hey!
It seems as if you are the only one on here that likes me! I think I got it work but now I can’t install the rsgallery any ideas. it keep telling me another component is using that directory then I delete the directory and get the same thing. :confused:
mfcphil Friendmfcphil
- Join date:
- September 2007
- Posts:
- 2866
- Downloads:
- 3
- Uploads:
- 218
- Thanks:
- 211
- Thanked:
- 388 times in 133 posts
February 18, 2008 at 10:56 pm #239465do you have another gallery running?
bramewave Friendbramewave
- Join date:
- December 2007
- Posts:
- 76
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 27
- Thanked:
- 2 times in 1 posts
February 18, 2008 at 11:10 pm #239467😀 I might! I think i do
February 26, 2008 at 10:30 am #240208Hello, I have the same problem: want to increase global font size.
I cant see the setting in file “ja_vars.php” but I see it in “params.ini”.ja_color=default
ja_font=3
ja_menu=2
usertool=6But when I change from font 3 to 4 or more, nothing seems to change, even after a cache refresh.
Do I have to fiddle in the CSS? If yes, wheres the precise line to modify the text in the main content area?Are these codes concerned?
body.fs1 {
font-size: 9px;
}
body.fs2{
font-size: 10px;
}
body.fs3{
font-size: 11px;
}
body.fs4{
font-size: 12px;
}
body.fs5{
font-size: 13px;
}
body.fs6{
font-size: 14px;
or this one (according to my CSS reader, zoomed on a text area?
p, pre, blockquote, ul, ol, h1, h2, h3, h4, h5, h6 {
margin: 15px 0;
padding: 0;
}
I’m on Joomla 1.5, with Avian Modern, Safari or Firefox.
Thanks
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
February 27, 2008 at 3:35 am #240314If you want to increase global font size, you should change it in admin. Plz log in admin, choose Avian Modern Template to edit, you will see those paramaters: Color Variation, Font size,… Before refresh your browse, plz delete all cookies. Hope can help you.
babyzsmile Friendbabyzsmile
- Join date:
- October 2006
- Posts:
- 84
- Downloads:
- 0
- Uploads:
- 9
- Thanks:
- 12
- Thanked:
- 1 times in 1 posts
April 6, 2008 at 12:46 am #244517I just installed my template and want to use the blue. I have used the quickstart and the ja_vars.php does not have the tag noted in the help guide. Any help? Thanks.
<?php
/**
* @copyright Copyright (C) 2005 – 2007 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/// no direct access
defined( ‘_JEXEC’ ) or die( ‘Restricted access’ );
include_once (dirname(__FILE__).DS.’/ja_templatetools.php’);$tmpTools = new JA_Tools($this);
$tmpTools->setColorThemes(array(‘default’, ‘blue’, ‘green’));# Auto Collapse Divs Functions ##########
$ja_left = $this->countModules( ‘left’ );
$ja_right = $this->countModules( ‘right’ );
$ja_masscol = $this->countModules(‘top’);
if ( $ja_left && $ja_right ) {
//2 columns
$divid = ”;
} elseif ( ($ja_left || $ja_right) ) {
//One column
$divid = ‘-c’;
} else {
//Full
$divid = ‘-f’;
}//Main navigation
$japarams = new JParameter(”);
$japarams->set( ‘menu_images’, 1 ); // Source of menu
$japarams->set( ‘menu_images_align’, ‘left’ );
$japarams->set( ‘menutype’, ‘mainmenu’ );
switch ($tmpTools->getParam(JA_TOOL_MENU)) {
case 1:
$menu = “Splitmenu”;
include_once( dirname(__FILE__).DS.’ja_menus/’.$menu.’.class.php’ );
break;
case 2:
case 4:
$menu = “CSSmenu”;
include_once( dirname(__FILE__).DS.’ja_menus/’.$menu.’.class.php’ );
break;
case 3:
$menu = “DLmenu”;
include_once( dirname(__FILE__).DS.’ja_menus/’.$menu.’.class.php’ );
break;
}
$menuclass = “JA_$menu”;
$jamenu = new $menuclass ($japarams);$hasSubnav = false;
if (($jamenu->hasSubMenu (1) && $tmpTools->getParam(JA_TOOL_MENU) == 1) || $tmpTools->getParam(JA_TOOL_MENU) == 3)
$hasSubnav = true;?>
babyzsmile Friendbabyzsmile
- Join date:
- October 2006
- Posts:
- 84
- Downloads:
- 0
- Uploads:
- 9
- Thanks:
- 12
- Thanked:
- 1 times in 1 posts
April 6, 2008 at 1:16 am #244519How did you change the title to bramewavestudios logo?
-
AuthorPosts
This topic contains 9 replies, has 5 voices, and was last updated by babyzsmile 16 years, 7 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum