No graphic buttons in admin.
mazza <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.suggestions |
|---|---|
| Message-ID | <c769037f0cf7d06d65d19469200771bd@osCommerce-Forums> |
This message was sent from: Suggestions and Proposals
http://forums.oscommerce.com/viewtopic.php?p=172770#172770
----------------------------------------------------------------
These seem to slow loading time, time to translate the admin side, adding contributions to admin more cumbersome for all languages exept english. Makes it harder to include contributions since graphigs almost all contributors include only. Making <input type=image> to <input type=button> and <a href=""><img></a> to <a href="">text</a> would cut down the development and integration time considerably. These can then be styled with css.
html:
[code]
<input name="submit" type="button" value="submit" class="button">
<a href="#" class="button">link</a> [/code]
css: [code]input.button {
font-weight: bold;
color: #000000;
background-color: #FFFFFF;
border: 1px solid #000000;
}
a.button {
font-weight: bold;
color: #000000;
background-color: #FFFFFF;
border: 1px solid #000000;
padding: 1px 15px;
text-decoration: none;
}[/code]