Comment box width - Printable Version +- MN Forum (http://forum.mn-shop.com) +-- Forum: Products (http://forum.mn-shop.com/forum-products.html) +--- Forum: Ask a Question (http://forum.mn-shop.com/forum-ask-a-question.html) +--- Thread: Comment box width (/thread-comment-box-width.html) |
Comment box width - Galaxian - 12-01-2013 Hey! Where can I edit the blog comment box width because I have been looking everywhere and can't seem to find it? RE: Comment box width - bugboy - 12-01-2013 You mean the width of the box where the users are going to write comments? RE: Comment box width - Galaxian - 12-01-2013 Yes, the width of the box where user can type text. RE: Comment box width - bugboy - 12-01-2013 For the box width add in the style.css the following Look for: .blog_comment { padding: 10px 5px; margin: 10px auto; width: 600px; background: #EFEFEF; border: solid 1px #919191; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; color: dimGray; and after color:dimGray; add width: 660px; -FOR THE TEXT BOX- textarea { border: solid 1px #BBB; font-size: 12px; color: #333; min-width: 587px; padding: 2px 4px; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; } after -webkit-border radius: 4px; add width: 650px; RE: Comment box width - Galaxian - 12-01-2013 Thanks for the help, I am 100% sure that I looked for that in both style.css and blog.css but didn't manage to find them earlier, found them now somehow |