Replace image buttons with css
-
- Registered User
- Posts: 32
- Joined: Mon May 08, 2006 10:14 am
Re: Replace image buttons with css
that means more work in RTL styling and changing font for Tahoma in Arabic "Vendra is not always the best choice", either way its better for mobiles usage so +1
Re: Replace image buttons with css
Have this not been merge yet?
- EXreaction
- Registered User
- Posts: 1555
- Joined: Sat Sep 10, 2005 2:15 am
Re: Replace image buttons with css
Partially merged, the large buttons now are not using images.
Re: Replace image buttons with css
as long as we have the choice of specifying an image through css this change doesn't seem too harmful.
Re: Replace image buttons with css
I just wonder, why it is different from the original buttons? It is not as difficult to immitate text from the images better. Just try to add this lines to the styles:
It would require to wrap either first word of the button, or all the others, to differentiate the boldness, but it at least is more eye catching (and closer to the original images), than the version used now, IMHO.
Code: Select all
.buttons div a {
text-transform: uppercase;
word-spacing: -5px;
font-weight: 500;
}
.bolder {
font-weight: bolder;
}
Re: Replace image buttons with css
You're right, it looks much better
- DavidIQ
- Customisations Team Leader
- Posts: 1904
- Joined: Thu Mar 02, 2006 4:29 pm
- Location: Earth
- Contact:
Re: Replace image buttons with css
Ticket + pr?Senky wrote:I just wonder, why it is different from the original buttons? It is not as difficult to immitate text from the images better. Just try to add this lines to the styles:It would require to wrap either first word of the button, or all the others, to differentiate the boldness, but it at least is more eye catching (and closer to the original images), than the version used now, IMHO.Code: Select all
.buttons div a { text-transform: uppercase; word-spacing: -5px; font-weight: 500; } .bolder { font-weight: bolder; }
- EXreaction
- Registered User
- Posts: 1555
- Joined: Sat Sep 10, 2005 2:15 am
Re: Replace image buttons with css
Fonts are either bold or not bold, while varying levels of bold are in spec, they are not usable in any browser I know of.
- DavidIQ
- Customisations Team Leader
- Posts: 1904
- Joined: Thu Mar 02, 2006 4:29 pm
- Location: Earth
- Contact:
Re: Replace image buttons with css
Yes but I think the "Post Reply" text in the button could do with a bit of boldness at least. Should stand out from the other elements in that area, which right now it does not really stand out.