How to change the "name of the site"

Permalink
Hi.

My website is calledhttp://www.andreasjohnke.dk and i am currently building it for school purposes. On the front page, however, I have an issue regarding my name:

1) My name is Andreas Vinding Jøhnke and not "Johnke".
2) When holding the curser on the name it underlines, which looks bad because the underline goes into the grey part.

Where/how do I change this? If I can't get an ø into my name, I would prefer to get rid of the middle name "Vinding" in order to get the name higher, so the underline doesn't cut into the grey.

Thanks in advance.

 
ntisithoj replied on at Permalink Reply
ntisithoj
if I understand, you don't want an underline to appear when you mouseover your name?

If so, then add

text-decoration: none;
SotD replied on at Permalink Reply
Where? It is not something I can change in the normal edit type. I guess I have to find the root of the site somewhere in the server...
jakobfuchs replied on at Permalink Reply
jakobfuchs
I suppose the theme you use fills in the site name automatically in the top left corner? E.g the name of your site is "Andreas Vinding Johnke" ? If so you can easily change that in the dashboard -> system & settings; look in the basic category for "site name".

Your theme has some weird css going on, but to just remove the underline effect add the following rule to your theme css.

#logo a:hover {
  text-decoration: none;
}
SotD replied on at Permalink Reply
Thanks a lot...

Where do I find the Theme folder, so I can change that code?
jakobfuchs replied on at Permalink Reply
jakobfuchs
I suppose in /themes or /packages, but really not sure since I haven't worked with this version of Concrete5 in a long time.