Hello,
I installed the Newsletter Made Simple extension and it is working fine. The problem is that I have the sign up box in my site's right column. I would like for my column to be limited to 130px wide, but the length of the name box and email address box are so long that it breaks the column width. So, the right column is much wider than I would like.
Where can I change how long the name and email address field boxes are?
Thanks!
Form Length in Newsletter Made Simple
-
- New Member
- Posts: 4
- Joined: Sat Oct 13, 2007 6:59 am
Re: Form Length in Newsletter Made Simple
You can change them in the stylesheet - look for the id or class of the field and style it there.
Nullig
Nullig
Re: Form Length in Newsletter Made Simple
can you tell where the stylesheet for this module is ?
i cant find it.
or should i use the one for the site ?

i cant find it.
or should i use the one for the site ?

Re: Form Length in Newsletter Made Simple
I found it
it might be the worst method .. but its working
in the stylesheet for the page
div#emailbox input{
float: left;
width: 8em; /* control the width for the input box */
font-size: 1.5em;
text-align: left;
padding: 0.0em 0 0.1em 0;
margin: 0 0em;
}
--------
now in the NMS admin page
under "Subscribe" modify the template
{if $message ne ""}
{$message}
{/if}
{$formstart}
{$formhidden}
{if $prompt_email ne ""}
------ this is the interesting part -------
{$email}
{/if}
{$submitbtn}
{$formend}
nice uhh
i love CMSMS.
it might be the worst method .. but its working
in the stylesheet for the page
div#emailbox input{
float: left;
width: 8em; /* control the width for the input box */
font-size: 1.5em;
text-align: left;
padding: 0.0em 0 0.1em 0;
margin: 0 0em;
}
--------
now in the NMS admin page
under "Subscribe" modify the template
{if $message ne ""}
{$message}
{/if}
{$formstart}
{$formhidden}
{if $prompt_email ne ""}
------ this is the interesting part -------
{$email}
{/if}
{$submitbtn}
{$formend}
nice uhh

i love CMSMS.