Page 1 of 1

Changing CSS to center the sitename

Posted: Thu Oct 12, 2017 7:45 pm
by roze
The template says:

Code: Select all

<h1><?php echo sitename()?></h1>
The CSS says:

Code: Select all

h1{width:auto;foat:right;clear:right;color:#0080c0;font-size:24px;line-height:1.2em;text-align:right;font-weight:100;padding:0.5em;margin:0;letter-spacing:1px;}
How do I have to change the CSS to center the sitename?

http://www.dommelschlavenkoor.nl

Re: Changing CSS to center the sitename

Posted: Thu Oct 12, 2017 8:45 pm
by lck

Code: Select all

#header h1 {
    width: auto;
    foat: right; /* misspelling foat, change it to float: none; */
    clear: right;
    color: #0080c0;
    font-size: 24px;
    line-height: 1.2em;
    text-align: right; /* change it to text-align: center;  */
    font-weight: 100;
    padding: 0.5em;
    margin: 0;
    letter-spacing: 1px;
}

Re: Changing CSS to center the sitename

Posted: Thu Oct 12, 2017 8:59 pm
by roze
Thanks!