2 nate Jan 31, 2007 14:39

Sorry! I should've thought to post the link the first time. My site is:
You'll notice that when you go to leave a comment, or contact me via the contact form, the boxes lap into my second column. I just want to shorten the width of them so they don't do that, but I don't know where to look. I'm also trying to find where I edit the style of the date header on my blog, as the date is extremely large for my taste at the moment!
Sorry for what is probably an easy question. I'm new to b2evolution, and very inexperienced with PHP. I appreciate the assistance!
- Nick
In your HTML you have...
<input maxlength="100" class="bComment" size="40" name="u" id="u" type="text">
Change to size='32' and see how you go.
As for the date, it is in h2 tags. So I would add the h2 tag to your css file and define its size the way you would like it.
You could do this in your css:
.bComment input {
width:50%;
}
with the width being your desired width.
Thanks, guys! I finally figured out where my _feedback.php file was, and then all of your suggestions began to make sense. Thanks for your help!
It might be easier if you add a link to your site so we can snoop around in the code and css.