Fixing chamilo CSS and changing logo name

skala
Julio Montoya 15 years ago
parent 814c8dfe15
commit 66d7af4597
  1. 6
      main/css/chamilo/default.css
  2. BIN
      main/css/chamilo/images/logo-chamilo.png
  3. BIN
      main/css/chamilo/images/logo-institucion.png
  4. 6
      main/inc/banner.inc.php
  5. 15
      main/install/index.php

@ -297,8 +297,8 @@ input[text] {
}
#top_corner {
}
#institution {
background-image: url(images/dokeos-header-camaleon.png);
#institution {
background-image: url(images/header-logo.png);
background-repeat:no-repeat;
height:90px;
overflow:hidden;
@ -1882,7 +1882,7 @@ div.comments {
*****************************************************/
#installation_steps {
float:left;
background-color: #a0e5fc;
background-color: #EFEFEF;
}
.current_step {
font-weight: bold;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

@ -61,17 +61,17 @@ if (!empty($_cid) and $_cid != -1 and isset($_course)) {
} elseif (isset ($nameTools) && $language_file != 'course_home') {
//Put the name of the user-tools in the header
if (!isset ($_user['user_id'])) {
echo " ";
echo '<div id="my_courses"></div>';
} elseif(!$noPHP_SELF) {
echo "<div id=\"my_courses\"><a href=\"".api_get_self()."?".api_get_cidreq(), "\" target=\"_top\">", $nameTools, "</a></div>", "\n";
} else {
echo "<div id=\"my_courses\">$nameTools</div>\n";
echo '<div id="my_courses">'.$nameTools.'</div>';
}
} else {
echo '<div id="my_courses"></div>';
}
//not to let the header disappear if there's nothing on the left
echo ' <div class="clear">&nbsp;</div>';
echo '<div class="clear">&nbsp;</div>';
/*
-----------------------------------------------------------------------------

@ -30,7 +30,7 @@ if ( !function_exists('version_compare') || version_compare( phpversion(), '5',
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css" media="screen, projection">
/*<![CDATA[*/
@import "../css/dokeos_blue/default.css";
@import "../css/chamilo/default.css";
/*]]>*/
</style>
</head>
@ -406,7 +406,7 @@ if ($encryptPassForm=='1' ) {
<title>&mdash; <?php echo get_lang('ChamiloInstallation').' &mdash; '.get_lang('Version_').' '.$new_version; ?></title>
<style type="text/css" media="screen, projection">
/*<![CDATA[*/
@import "../css/dokeos_blue/default.css";
@import "../css/chamilo/default.css";
/*]]>*/
</style>
<script type="text/javascript" src="../inc/lib/javascript/jquery.js"></script>
@ -489,16 +489,16 @@ if ($encryptPassForm=='1' ) {
<div id="header2">&nbsp;</div>
<div id="header3">
<ul>
<li id="current"><a href="#"><span><?php echo get_lang('Installation');?></span></a></li>
<li id="current"><a href="#"><span id="tab_active"><?php echo get_lang('Installation');?></span></a></li>
</ul>
</div>
</div>
<div id="main">
<form style="padding: 0px; margin: 0px;" method="post" action="<?php echo api_get_self(); ?>?running=1&amp;installType=<?php echo $installType; ?>&amp;updateFromConfigFile=<?php echo urlencode($updateFromConfigFile); ?>">
<div id="installation_steps" style="width:240px">
<img src="../img/bluelogo.gif" hspace="10" vspace="10" alt="Chamilo logo" />
<div id="installation_steps" style="width:220px">
<!-- <img src="../css/chamilo/images/header-logo.png" hspace="10" vspace="10" alt="Chamilo logo" /> -->
<br />
<ol>
<li <?php step_active('1'); ?>><?php echo get_lang('InstallationLanguage'); ?></li>
<li <?php step_active('2'); ?>><?php echo get_lang('Requirements'); ?></li>
@ -801,6 +801,7 @@ elseif($_POST['step6'])
</tr>
</table>
</form>
</div>
<br style="clear:both;" />
<div class="push"></div>
</div><!-- wrapper end-->

Loading…
Cancel
Save