Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2006-01-13 06:01:34
- deronsizemore
- Member
- From: Kentucky
- Registered: 2005-11-02
- Posts: 324
Two small things bugging the crap out of me!
Okay for one, my “preview” button on my comments the P in Preview is lowercase, but when the submit button pops up after clicking preview, the submit buttons S is uppercase letters. Why is that? I don’t see anywhere that I can actually edit these. Because they are the txp tags, which are uneditable for the most part.
Second thing is my reminder check box. The words “reminder” and “forget” are to close for my liking to the actual check box. I’ve tried this: <code><span class=“remember”><txp:comment_remember /></span></code> and added padding-right to the CSS file, but nothing. Any other way to do this that I’m not thinking about?
Offline
Re: Two small things bugging the crap out of me!
<p>1) You can change the submit button in the language file, located in /textpattern/lang/. You’ll have to modify it (load the doc in a text editor and search for “submit”), upload it to /textpattern/lang/ and then update it in the txp interface: “admin > preferences” and then install it from file (below the list of languages).</p>
<p>OR</p>
<p>Use CSS, like so: input#submit {text-transform: lowercase;}
</p>
2) Create a style rule for the <label>
. i.e.
label {margin-left: 5px;}
<p>Should work. Did the same on my site.</p>
Last edited by mikeg (2006-01-13 07:17:25)
“I love Beethoven. Especially the poems.”
- Ringo Starr
Offline
#3 2006-01-13 13:21:19
- deronsizemore
- Member
- From: Kentucky
- Registered: 2005-11-02
- Posts: 324
Re: Two small things bugging the crap out of me!
> mikeg wrote:
> <p>1) You can change the submit button in the language file, located in /textpattern/lang/. You’ll have to modify it (load the doc in a text editor and search for “submit”), upload it to /textpattern/lang/ and then update it in the txp interface: “admin > preferences” and then install it from file (below the list of languages).</p>
Thanks! Worked like a charm. :)
Offline