Page 1 of 1

[solved] NMS - Length of subscribe boxes

Posted: Sat Feb 11, 2012 12:28 pm
by ndillane
Hi
I am helping (volunteering) a charity with moving their webs site to CMSMS

I can not seem to find the css associated with the subscribe box which is extending beyond my right margin

http://posteramp.com/cmssimple/index.php?page=Treks

Showing html source of rendered page lets me see that the size is 30

Anybody know how do I shorten this ?

Email Address:&nbsp;<input type="text" class="cms_textfield" name="md4e46email" id="md4e46email" value="" size="30" maxlength="150" />


tks for your help

regards

Noel

Re: NMS - Length of subscribe boxes

Posted: Sat Feb 11, 2012 2:51 pm
by uniqu3
You have it in rightbar so use it's id.

Code: Select all

#rightbar input.cms_textfield {
    width: whatever;
}

Re: NMS - Length of subscribe boxes

Posted: Sat Feb 11, 2012 3:29 pm
by ndillane
I added this to my main CSS sheet

#rightbar input.cms_textfield {
width: 180px;
}

And it works (leaving out px meant it did not work)

tks very much for your help
Noel