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: <input type="text" class="cms_textfield" name="md4e46email" id="md4e46email" value="" size="30" maxlength="150" />
tks for your help
regards
Noel
[solved] NMS - Length of subscribe boxes
Re: NMS - Length of subscribe boxes
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
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
#rightbar input.cms_textfield {
width: 180px;
}
And it works (leaving out px meant it did not work)
tks very much for your help
Noel