Selling electronic cigarettes and cartridges in Bulgaria.
Very sharp theme, and a good example for abilnet on theming the buttons on the site. I'll be sure to point it out to him!
Yes, indeed, an awesome shop! ...specially, I tried to "spy" how you did the themed buttons, but as a non coder I feel I'm lost. Appreciated, if you're willing to share, thanks!
Nice shop anyway!
I don't understand what buttons exactly do you mean. I suppose you mean the regular form input, which are themed using simple CSS:
input.form-submit {background: url(img/buttons.jpg) top left repeat-x;color: #E5E0CD;border: 1px solid #4b3605;padding: 2px 8px 2px 8px;}input.form-text, select.form-select {background: url(img/inputs.jpg) top left repeat-x;color: #4b3605;border: 1px solid #4b3605;}textarea.form-textarea {background: #fff url(img/inputs.jpg) top left repeat-x;color: #4b3605;border: 1px solid #4b3605;}
Thanks a ton acdtrp, now rushing to test on my site!
The jpegs are only a thin gradient slice which is repeated horizontally (repeat-x) so it doesn't matter how long is the button.
Re: e-Cig.bg
Very sharp theme, and a good example for abilnet on theming the buttons on the site. I'll be sure to point it out to him!
Re: e-Cig.bg
Yes, indeed, an awesome shop! ...specially, I tried to "spy" how you did the themed buttons, but as a non coder I feel I'm lost. Appreciated, if you're willing to share, thanks!
Nice shop anyway!
Re: Re: e-Cig.bg
I don't understand what buttons exactly do you mean. I suppose you mean the regular form input, which are themed using simple CSS:
input.form-submit {
background: url(img/buttons.jpg) top left repeat-x;
color: #E5E0CD;
border: 1px solid #4b3605;
padding: 2px 8px 2px 8px;
}
input.form-text, select.form-select {
background: url(img/inputs.jpg) top left repeat-x;
color: #4b3605;
border: 1px solid #4b3605;
}
textarea.form-textarea {
background: #fff url(img/inputs.jpg) top left repeat-x;
color: #4b3605;
border: 1px solid #4b3605;
}
Re: Re: Re: e-Cig.bg
Thanks a ton acdtrp, now rushing to test on my site!
Re: Re: Re: Re: e-Cig.bg
The jpegs are only a thin gradient slice which is repeated horizontally (repeat-x) so it doesn't matter how long is the button.