Headermain

Headermain

Faren Heit -
回帖数:7
Does anyone know how i can change the text size of headermain?

附件 H1.GIF
回复Faren Heit

Re: Headermain

Faren Heit -
Also how do i add a carriage return (to send it to the next line) before the bracket??
As you can see in the image the text is overlapping my logo 伤心
附件 H1a.GIF
回复Faren Heit

Re: Headermain

Frank Ralf -

The DIV class is

<div class="logininfo">You are logged in as ... </div>

You can use this for changing the font-size with CSS, e.g.:

div.logininfo {
 font-size: 10px;
}

hth Frank

PS: Do you have link to the live site? That would be helpful for giving more precise advise.

回复Faren Heit

Re: Headermain

Faren Heit -
Ok guys im nit getting anywhere and its driving me up the wall.
How can i get the following effect:


You are logged in as
________Admin user
__________(Logout)

___________date....

___________Icons...

Pleaseeeeeeeeeee 伤心
回复Faren Heit

Re: Headermain

Frank Ralf -
You could try giving div.headermenu (styles.php, line 779)) a fixed width,

.headermenu {
float:right;
margin-right:2px;
padding:10px;
text-align:right;
width: 100px;
}

With Development:Firebug extension for Firefox you can analyse CSS and even change it on the fly.

Will give it a closer look when I find the time.

hth
Frank

附件 Transforming_Education_LE_Login.png
回复Frank Ralf

Re: Headermain

Faren Heit -
Hi Frank,

Thanks for the reply and help...
I have tried your example and it does do what i want to an extent.
However I lose the icons (see your image) 伤心
In a nutshell i would like to do the following:
1st line to read: You are not logged in
2nd line: (Login)
3rd line: the complete date on one line
4th Line: My Icons (see attached image)

Many Thanks for the help.

Whats happened to all the other Moodle Gurus? mixed
附件 H1b.GIF
回复Faren Heit

Re: Headermain

Frank Ralf -

You have to play a little with the width and font-size settings so that you get the desired effect.

The font-size for the date is hard coded in the headermenu:

But in principle that's the way it works (sse screen shot).

Cheers Frank

附件 Login2.png