The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

text slash

3 posters

Go down

Solved text slash

Post by delicious August 28th 2012, 3:54 pm

Hello Smile
What is the css code, when you move mouse on the username or forum name, text slash. All text becomes lowercase.


Last edited by delicious on August 29th 2012, 3:46 pm; edited 1 time in total
delicious
delicious
Forumember

Female Posts : 213
Reputation : 1
Language : lithuanian

http://wildchild.forumlt.com/

Back to top Go down

Solved Re: text slash

Post by Sir Chivas™ August 28th 2012, 3:59 pm

Forum version? And you want that for the forum's board or just members?
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6983
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

Solved Re: text slash

Post by delicious August 28th 2012, 4:01 pm

and for forum board and username, and home, profile, search..
phpBB 2
delicious
delicious
Forumember

Female Posts : 213
Reputation : 1
Language : lithuanian

http://wildchild.forumlt.com/

Back to top Go down

Solved Re: text slash

Post by delicious August 29th 2012, 1:04 pm

no strike.
I wanna this:
text slash XKacB

and when mouse is on the portal text:
text slash VHg8J

how do this?
delicious
delicious
Forumember

Female Posts : 213
Reputation : 1
Language : lithuanian

http://wildchild.forumlt.com/

Back to top Go down

Solved Re: text slash

Post by nextlevelgaming August 29th 2012, 3:03 pm

find the area of coding you want. I believe it may be genmed gensmall gen im not sure the exact css so find it in the source code. the script is

firstly let me explain, you will have to caps the first since I'm not finding out a transform for both. Which should not be a problem. so say your class is genmed...

Code:

.genmed{
color:#000;
text-decoration:none;
}
.genmed:hover{
text-transform:lowercase !important;
}

and that should do it.
nextlevelgaming
nextlevelgaming
Forumember

Male Posts : 989
Reputation : 38
Language : English|CSS|HTML5|javascript|
Location : New York

http://www.easybbtutorials.forumotion.com

Back to top Go down

Solved Re: text slash

Post by delicious August 29th 2012, 3:21 pm

I found it with your help Smile
it's name is a:hover Smile

p.s. how remove underline?
delicious
delicious
Forumember

Female Posts : 213
Reputation : 1
Language : lithuanian

http://wildchild.forumlt.com/

Back to top Go down

Solved Re: text slash

Post by nextlevelgaming August 29th 2012, 3:31 pm

ok to take underline out place this inside the a element.

Code:
a{
text-decoration:none;
}

by setting the parents element the hover element will follow unless specified.

so

Code:
a{
text-decoration:underline;
color:#000;
}
a:hover{
text-decoration:none;
color:#FF0000;
}

doing that above i made two complete different actions for off state and hover state. If i wanted it to stay the same I would not change the child elements text-decoration nor color. so basically just add the element

text-decoration:none;
to the a{} css element. glad to help you my friend
nextlevelgaming
nextlevelgaming
Forumember

Male Posts : 989
Reputation : 38
Language : English|CSS|HTML5|javascript|
Location : New York

http://www.easybbtutorials.forumotion.com

Back to top Go down

Solved Re: text slash

Post by delicious August 29th 2012, 3:38 pm

uh, smth wrong, underline don't out place Sad
delicious
delicious
Forumember

Female Posts : 213
Reputation : 1
Language : lithuanian

http://wildchild.forumlt.com/

Back to top Go down

Solved Re: text slash

Post by nextlevelgaming August 29th 2012, 3:43 pm

??? sorry didnt understand what you were saying...Do not place
text-decoration:none;
in the a:hover but rather in the a{ itself. if it seems not to go away try adding this

text-decoration:none !important;

what !important does is overrides any rules that are riding with a "a" element so try copying and pasting that into your element
nextlevelgaming
nextlevelgaming
Forumember

Male Posts : 989
Reputation : 38
Language : English|CSS|HTML5|javascript|
Location : New York

http://www.easybbtutorials.forumotion.com

Back to top Go down

Solved Re: text slash

Post by delicious August 29th 2012, 3:45 pm

ahh, it's works Smile
thant you so much ^^
delicious
delicious
Forumember

Female Posts : 213
Reputation : 1
Language : lithuanian

http://wildchild.forumlt.com/

Back to top Go down

Solved Re: text slash

Post by nextlevelgaming August 29th 2012, 3:49 pm

no problem
nextlevelgaming
nextlevelgaming
Forumember

Male Posts : 989
Reputation : 38
Language : English|CSS|HTML5|javascript|
Location : New York

http://www.easybbtutorials.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum