Changes in Fusion Theme

Changes in Fusion Theme

by Jesus Rodriguez -
Number of replies: 2

Hi there..

I´ve been modifying fusion theme, I change the Width from 100% to 1100px, and other things. But I found two things I can´t solve.

1.- I change the body Style to:

body {
  min-height:100%;
  height:auto !important; /* ie6 ignores it */
  height:100%; /* fix */
  position: relative;
  /*Modificado*/
  /*background: #fff url([[pix:theme|main-bg]]) repeat-x left 150px;*/
  background-color:#F0F0F0;
}

 

But the background color is cut, incomplete, I thing an html element is put here and this make color cuts.. (Image attached)

 

2.- I don´t find the way make Footer moodle logo smaller....

 

Saludos!!!

Txs

Appreciate

Attachment modlle.jpg
Average of ratings: -
In reply to Jesus Rodriguez

Re: Changes in Fusion Theme

by Mary Evans -

OK...in Moodle 2 you need to make use of html tag as well as the body tag in CSS like so:

html, body {
  background-color:#F0F0F0;
  margin: 0;
  padding: 0;
}

And remove the old CSS.

To make the footer logo smaller you need to fins a small image and replace it in your theme.

In reply to Mary Evans

Re: Changes in Fusion Theme [SOLVED]

by Jesus Rodriguez -

Thanks Mary...

At the end, the solution was this...

 

html, body{  height:100%; }

html{   font-size: 100%;   /*Agregado*/   background-color:#F8F8F8; }

body {   min-height:100%;   height:auto !important; /* ie6 ignores it */   height:100%; /* fix */   position: relative;     /*Eliminado*/   /*background: #fff url([[pix:theme|main-bg]]) repeat-x left 150px;*/   }

Saludos

Txs