Dropdown Menu & Contact Form Issues

Hi, Been using the software for a while now and been very happy with it. I have a couple issues that I need a little direction with.

Dropdown Menu

I have questions that are being added to the dropdown menu, which makes them longer then an average link. I know how to set the width of the submenu but I can't seem to get the text to wrap to the next line. No, I don't have the No Wrap Feature On. If I set the width to 300px, the text should auto wrap when it hits that point and it doesn't.

Contact Form Where do I edit the results page? I want to remove stuff like this. "This email was delivered with Bootstrap Studio Smart Forms" This is in the footer.

Thank you Randy

The class "dropdown-item" has the following property configured.

.dropdown-item {
    ...
  white-space: nowrap;
    ...
}

Add to your own CSS file to override it.

.dropdown-item {
  white-space: normal;
}

Saj