Nickname editing
Link |
by
![]() |
Well I figured a fancier nickname wouldn't hurt(I attempted already to remove the underline from it. I find underlines to be annoying). Also can you use create a hover over color on your nickname? Such as a:hover { text-decoration:none; color:#FF00FF; } would do for a link in html? I know some html/css, but I fear it is horrendously out dated. I learned a long time ago, and never kept up. And the div tag is one I am highly unfamilar with. I know it wasn't covered in my html class. Anyways, I googled it and I know it does have a hover option. However, I am unsure how(if it is at all possible) to apply it on this forum for the nickname. I have played around a bit, but haven't got anywhere(at least I got rid of the underline, though I do got a question on the code I used for that). Shun WolfKin Is this how I should have done it... or did I screw it up somewhere. It looks like it is adding in space somewhere when I view one of my posts. I would appreciate the help here. I love HTML(heh, that alone makes me love this board, none of that BBCode crap) and CSS, however as I said I am just a tad outdated and rusty on my knowledge. Thus a refresher on some of these as well as tips would be nice. |
Re: Nickname editing
Link |
by
![]() |
The div tag sets your nickname off as a division of text that is formatted differently, which causes the line breaks on either side of your nickname. The tag you should use instead is the span tag. Just use it the exact same way that you used the div tag and it will work fine. I.E. It looks like you know your HTML pretty well, but my guide for commonly used HTML at gendou.com might be a helpful way to brush up on the basics. View the guide here |
Re: Nickname editing
Link |
by
![]() |
As for your guide... it was one of the first things I read and was what showed me that I needed to freshen up(after all the span and div tags are quite useful, and when I first learned they weren't used/there). However, thankfully, the basics of HTML have remained the same so the rest of it didn't help me much. So I have been googling it. Also I finally found something showing me how to mouseover. So now my nickname code looks like Hopefully none of that will cause any issues(I hope). Also is there a better way to show your code then the |
Re: Nickname editing
Link |
by
![]() |
You can use < and > to give you your brackets and that way it will ignore all your code that would be between normal brackets. Typing: <b>This could be bold.</b> Will display: <b>This could be bold.</b> |
Re: Nickname editing
Link |
by
![]() |
That will work much better! Thanks. |