-
AuthorPosts
-
July 23, 2008 at 4:54 am #131213
I have a question because the font in the menu like the picture….
I will change the font size in the menu a little smaller…where i can do this…?
Sorry, war my bad English…
Ltd.Lupo
tempusserbia Friendtempusserbia
- Join date:
- January 2008
- Posts:
- 270
- Downloads:
- 0
- Uploads:
- 5
- Thanks:
- 29
- Thanked:
- 32 times in 8 posts
July 23, 2008 at 5:47 am #261654Open your template config and choose “3” font type. If that not help, then you have to edit template css file.
Open your index.php file, in top you will see this line:
For rest read “Read me” thread from top of this part of forum
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
July 23, 2008 at 9:33 am #261691Hi id31
Do you have any successful ?July 23, 2008 at 1:12 pm #261751Sorry, nothing helps…:(
In index.php there is no line
#font size default
Thats my index.php file:
[PHP]<?php
/*————————————————————————
# JA Mageia 1.0 – August, 2007
# ————————————————————————
# Copyright (C) 2004-2006 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
# @license – Copyrighted Commercial Software
# Author: J.O.O.M Solutions Co., Ltd
# Websites: http://www.joomlart.com – http://www.joomlancers.com
————————————————————————-*/defined( ‘_JEXEC’ ) or die( ‘Restricted access’ );
include_once (dirname(__FILE__).DS.’/ja_templatetools.php’);
$this->ja_color_themes = array(‘default’,’cyan’,’orange’,’red’);
$ja_header_images_wide = array (‘header1.jpg’,’header2.jpg’,’header3.jpg’,’header4.jpg’,’header5.jpg’);
$ja_header_images_narrow = array (‘header1-n.jpg’,’header2-n.jpg’,’header3-n.jpg’,’header4-n.jpg’,’header5-n.jpg’);$tempTools = new JA_Tools($this);
$JAconfig = $tempTools->getUserSetting();
# Auto Collapse Divs Functions ##########
$ja_left = $this->countModules(‘left’) || ($JAconfig->ja_menutype == 1);
$ja_right = $this->countModules(‘right’);if ( $ja_left && $ja_right ) {
$divid = ”;
} elseif ( $ja_left ) {
$divid = ‘-fr’;
} elseif ( $ja_right ) {
$divid = ‘-fl’;
} else {
$divid = ‘-f’;
}$curidx = $tempTools->getCurrentMenuIndex();
//if ($curidx) $curidx–;
$ja_header_img = ‘header.jpg’;
$ja_header_images = ($JAconfig->ja_width==’narrow’)? $ja_header_images_narrow:$ja_header_images_wide;if (count($ja_header_images)) {
$curidx = $curidx % count($ja_header_images);
$ja_header_img = $ja_header_images[$curidx];
}
$msie=’/msies(5.[5-9]|[6].[0-9]*).*(win)/i’;
$supported_browsers = !isset($_SERVER[‘HTTP_USER_AGENT’]) ||
!preg_match($msie,$_SERVER[‘HTTP_USER_AGENT’]) ||
preg_match(‘/opera/i’,$_SERVER[‘HTTP_USER_AGENT’]);?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”<?php echo $this->language; ?>” lang=”<?php echo $this->language; ?>” >
<head>
<?php JHTML::_(‘behavior.mootools’); ?><jdoc:include type=”head” />
<?php $tempTools->genMenuHead(); ?><link rel=”stylesheet” href=”<?php echo JURI::base(); ?>templates/system/css/system.css” type=”text/css” />
<link rel=”stylesheet” href=”<?php echo JURI::base(); ?>templates/system/css/general.css” type=”text/css” />
<link rel=”stylesheet” href=”templates/<?php echo $JAconfig->template ?>/css/editor.css” type=”text/css” />
<link rel=”stylesheet” href=”templates/<?php echo $JAconfig->template ?>/css/template_css.css” type=”text/css” />
<link rel=”stylesheet” href=”templates/<?php echo $JAconfig->template ?>/css/colors/<?php echo $JAconfig->ja_color; ?>.css” type=”text/css” /><!–>
<style type=”text/css”>
.clearfix {height: 1%;}
#ja-pathwaywrap {
background: none;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader((src=’templates/<?php echo $JAconfig->template; ?>/images/opaque-<?php echo $JAconfig->ja_color; ?>.png’, sizingMethod=’scale’);
}
</style>
<!–><!–>
<style type=”text/css”>
.clearfix {display: inline-block;}
</style>
<!–><script language=”javascript” type=”text/javascript” src=”templates/<?php echo $JAconfig->template; ?>/scripts/ja.script.js”></script>
</head>
<body id=”bd” class=”<?php echo $JAconfig->ja_width.” fs”.$JAconfig->ja_font_size;?>”>
<a name=”Top” id=”Top”></a><ul class=”accessibility”>
<li><a href=”#ja-content” title=”Skip to content”>Skip to content</a></li>
<li><a href=”#ja-mainnav” title=””>Skip to main navigation</a></li>
<li><a href=”#ja-col1″ title=””>Skip to 1st column</a></li>
<li><a href=”#ja-col2″ title=””>Skip to 2nd column</a></li>
</ul>
<div id=”ja-wrapper”><!– BEGIN: MAIN NAVIGATION –>
<div id=”ja-mainnavwrap” class=”clearfix”><h1 class=”logo”><a href=”index.php”><?php echo $JAconfig->template; ?></a></h1>
<div id=”ja-mainnav”>
<?php
switch ($JAconfig->ja_menutype) {
case 1:
include(dirname(__FILE__).DS.”/ja_Splitmenu.php”);
$jamenu->genMenu (0);
break;
case 2:
case 4:
include(dirname(__FILE__).DS.”/ja_cssmenu.php”);
$jamenu->genMenu (0);
break;
case 3:
echo “<div class=”transmenu-inner”>”;
include(dirname(__FILE__).DS.”/ja_transmenu.php”);
$jamenu->genMenu (0);
echo “</div>”;
break;
}
?>
</div>
</div><!– END: MAIN NAVIGATION –>[/PHP]
Ltd.Lupo
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
July 23, 2008 at 2:11 pm #261761Hi
Plz login admin, go to Extensions-> Templates manager, choose Ja Utahia to edit, you will see some paramaters, in them have font size, plz choose as you wantJuly 23, 2008 at 2:22 pm #261766Sorry but it is the Mageia Template…
Ltd.Lupo
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
July 23, 2008 at 2:27 pm #261767Sorry, you must choose Mageia to edit
you will see like image
2258July 23, 2008 at 2:53 pm #261779Yes, wenn i choose font size 1 then its ok, but the content is also small…
I will only change font size in menu
Ltd.Lupo
Sherlock FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
July 25, 2008 at 6:44 am #262186Hi
if you use Css menu:
you can change font-size of Main menu in ja-sosdmenu.css (line 82)(templatesja_mageiaja_menusja_cssmenu folder)
#ja-cssmenu li a {
border-right:1px solid #D0D9DF;
color:#556975;
display:block;
font-weight:bold;
line-height:normal;
margin:0pt;
padding:25px 10px 10px 40px;
text-decoration:none;
text-transform:uppercase;
}
add “font-size” as you want
And edit font-size of submenu ja-sosdmenu.css (line 131)
#ja-cssmenu li ul a {
background:transparent none repeat scroll 0% 0%;
border-right:medium none;
color:#4F4F4F;
font-size:120%;-> change here as you want
font-weight:normal;
line-height:normal;
margin:0pt;
padding:7px 10px;
text-transform:none;
} -
AuthorPosts
This topic contains 11 replies, has 3 voices, and was last updated by id31 16 years, 3 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum