How do I change the icon & text colour of My Account box

How do I change the icon & text colour of “Open account” &
“Forgot Password” on the right My Account box?

Thanx
Lopty

Have you checked the html-output for css-ids or css-classes?
“Open account” and “Forget password” both got individual ids you can use.

Adding this to your css-file should work:


#test_RightLogin_Register {
color: red !important;
background:url("***/out/basic/src/bg/oxid_ce_.gif") no-repeat scroll 0 -160px transparent !important;
}
#test_RightLogin_LostPwd{
 color: red !important;
background:url("***/out/basic/src/bg/oxid_ce_.gif") no-repeat scroll 0  -160px transparent !important;!important;
}

[QUOTE=ChristophH;35345]Have you checked the html-output for css-ids or css-classes?
“Open account” and “Forget password” both got individual ids you can use.

Adding this to your css-file should work:


#test_RightLogin_Register {
color: red !important;
background:url("***/out/basic/src/bg/oxid_ce_.gif") no-repeat scroll 0 -160px transparent !important;
}
#test_RightLogin_LostPwd{
 color: red !important;
background:url("***/out/basic/src/bg/oxid_ce_.gif") no-repeat scroll 0  -160px transparent !important;!important;
}

[/QUOTE]

Thanx! it worked, but the colour of the icon & the text after login “You’re logged in as:…” does not change!

Lopty

Have you tried an other imagefile?
In my example i was unsing a default image from the shop. I only changed the position that is used from the file. (-285px to -160px). Now the arrow ist turned towards the bottom.
Check the image file and you will see what i mean.

[QUOTE=ChristophH;35350]Have you tried an other imagefile?
In my example i was unsing a default image from the shop. I only changed the position that is used from the file. (-285px to -160px). Now the arrow ist turned towards the bottom.
Check the image file and you will see what i mean.[/QUOTE]

Figured it out.

Thanx

Lopty