Submit your Product Ideas to the Click Product Management Team below.
These will be reviewed for consideration in a future product release. It is not intended to provide Product Support. If you are having a product issue, please follow regular support procedures.
Thank you for taking the time to submit your thoughts!
Ensuring that our products address the needs of our customers is important to Click. By providing your input, you're helping us ensure that our products are built by Marketers, for Marketers.
Information about the Product Ideas portal can be found in this support article.
To submit ideas related to Click Intelligent Dashboards please go to this link.
Please consider providing support for webfonts.
Using @font-face CSS to add a webfont to a landing page does not work for IE and Firefox because the font files need to be served from the same domain as the landing page. It works for Chrome because you can host the font files on a remote server. I've tried using the document library, but because you can't use the CNAME for this URL, it fails as well.
eg: this doesn't work.
@font-face {
font-family: 'Impact';
src: url('http://app.clickdimensions.com/blob/myaccount/documents/fonts/impact.eot');
src: url('http://app.clickdimensions.com/blob/myaccount/documents/fonts/impact.eot?#iefix') format('embedded-opentype'),
url('http://app.clickdimensions.com/blob/myaccount/documents/fonts/impact.woff') format('woff'),
url('http://app.clickdimensions.com/blob/myaccount/documents/fonts/impact.ttf') format('truetype'),
url('http://app.clickdimensions.com/blob/myaccount/documents/fonts/impact.svg#impact') format('svg');
font-weight: normal;
font-style: normal;
}