New Theme from the EduMoodle Team

New Theme from the EduMoodle Team

by Dan Humpherson -
Number of replies: 13
New Theme 'prettysimple' (currently waiting approval):

Demo

Download link on the site.

Nice and simple theme but quite effective in its design.

Drop down menu also included in the header.

I hoe you like it!
Average of ratings: -
In reply to Dan Humpherson

Re: New Theme from the EduMoodle Team

by Robert Draper -

Looking good Dan

 But the drop down being on the end of the logo tends to start dropping down to the next line if you only slightly resize the browser window.

Rob

In reply to Robert Draper

Re: New Theme from the EduMoodle Team

by Dan Humpherson -
I'll look into this, I was trying to avoid setting the width of any elements as the layout is a centred layout.

I encountered many problems with the EduMoodle Theme where I had fixed the width of the page and this effected lots of other deeper pages within Moodle.

Perhaps if i get it to fit 1024 then the menu moving wont be such and issue.
In reply to Dan Humpherson

Re: New Theme from the EduMoodle Team

by Faren Heit -
Cant access your site or the download link mixed
In reply to Faren Heit

Re: New Theme from the EduMoodle Team

by Dan Humpherson -
My web host has been doing some maintenance over the last couple of nights, should be ok now.

Its just a subsite of the EduMoodle theme.
In reply to Dan Humpherson

Re: New Theme from the EduMoodle Team

by Robert Draper -

Hi Dan

If you click on your demo link you end up trying to install "Moodle" on your server!surprise

In reply to Robert Draper

Re: New Theme from the EduMoodle Team

by Dan Humpherson -
Look like an IP originating in Russia has chosen to delete my config files, my server is about as secure as a very unsecure thing. Mainly because all it does is host 2 moodle installs and 2 zip files.

Something to do tonight i supposse!
In reply to Dan Humpherson

Re: New Theme from the EduMoodle Team

by Dan Humpherson -
The Moodle demo theme sites are back online,

EduMoodle Theme:

http://edumoodle.veloxserv.co.uk/moodle

NEW
prettysimple Theme:

http://edumoodle.veloxserv.co.uk/19/moodle

These things are sent to try us!
In reply to Dan Humpherson

Re: New Theme from the EduMoodle Team

by Dan Humpherson -
The prettysimple theme has a nice drop down menu in the top right hand corner of the page, however it has proved a little buggy in IE7.

It has now been fixed:

Demo

Download Lastest Version

Or to make the change to the theme yourself simply edit:

edumoodle.css

At the end of this file replace:

#topmenu ul li li a:hover{
background-image: none;
border-bottom: 1px solid #f59231;
}

#topmenu ul li ul {
left: -999em;
}

#topmenu ul li:hover ul ul, #topmenu ul li:hover ul ul ul {
left: -999em;
}

#topmenu ul li:hover ul, #topmenu ul li li:hover ul, #topmenu ul li li li:hover ul {
left: auto;
}

With:

#topmenu ul li li a:hover{
background-image: none;
border-bottom: 1px solid #f59231;
min-height:0;
}

#topmenu ul li ul {
left: -999em;
}

#topmenu ul li:hover ul ul, #topmenu ul li:hover ul ul ul {
left: -999em;
min-height:0;
}

#topmenu ul li:hover ul, #topmenu ul li li:hover ul, #topmenu ul li li li:hover ul {
left: auto;
min-height:0;
}
In reply to Dan Humpherson

Dynamic width on EduMoodle

by Tor Michal Kinn -
I find the section area a bit to narrow, would it be hard to make the template supporing dynamic width?
In reply to Tor Michal Kinn

Re: Dynamic width on EduMoodle

by Ray Le Couteur -
Not quite sure what you mean by dynamic width Tor ... but I increased the width of the Prettysimple theme as follows, and the width changes with screen resolution:


in edumodle.css

I change this
#page { /*Sets the width of the page*/
width: 75%;
/*min-width: 810px;*/
margin: 16px auto;
padding: 0;
background: #fff;
}

to this

#page { /*Sets the width of the page - 88% is % of screen width*/
width: 88%;
min-width: 900px;
margin: 10px auto;
padding: 5px;
padding-bottom:10px;
background: #DCE1E1;
}

It gives me a wider page but it will never go below 900px. The other changes are cosmetic.

In reply to Ray Le Couteur

Svar: Re: Dynamic width on EduMoodle

by Tor Michal Kinn -
I will try this. It's good to see that the change is done just one place...good work!


In reply to Tor Michal Kinn

Svar: Re: Dynamic width on EduMoodle

by Tor Michal Kinn -
I did some changes to styles_layout.css, header.html and footer.html.
I also added some images to the templates.

Basically, I added left and right divs to header and footer, and floated them left and right.

I also replaced the width of the outer elements with min-width.