By Ashley Rosenthal on Thursday, 17 April 2014
Posted in General Issues
Replies 3
Likes 0
Views 1K
Votes 0
I am wondering about some of the appearances on the Compose Message page. When you start to type in the message box it types right over the word "Message". Also why are some of the buttons cut off midway? (look at the submit button for an example)

Thank you!!
Hello Ashley,

It looks like there are some css issues on that particular form. Is it possible for you to provide us with the back end and FTP access to your site to check on this issue?
·
Friday, 18 April 2014 01:04
·
0 Likes
·
0 Votes
·
0 Comments
·
I know my programmer had adjusted some CSS files for other parts of the site, would this have affected this area? Could you let me know what files you'll be inspecting in case I have to make adjustments for another page of the site? I have included the administrator and FTP information below, thanks!
·
Friday, 18 April 2014 01:48
·
0 Likes
·
0 Votes
·
0 Comments
·
Yep, it looks like your programmer has enforced a "float: left" on all labels. To fix this, add the block of css codes below into your template's css file,


#fd.view-conversations .form-horizontal label
{
float: none !important;
}
·
Friday, 18 April 2014 02:17
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post