Copy link to clipboard
Copied
Hello,
I understand that Adobe Publish Online docs have to be hosted on Adobe servers - but is there a way of customising the URL at all?
Many thanks,
James
Copy link to clipboard
Copied
Hello,
I understand that Adobe Publish Online docs have to be hosted on Adobe servers - but is there a way of customising the URL at all?
Many thanks,
James
Copy link to clipboard
Copied
Copy link to clipboard
Copied
You can wrap the URL in some iframe code and display the doc from your website—in that case the initial URL would be customizable, but as soon as the viewer clicks a link within the doc they will be redirected to the Adobe server. Something like this:
<div class="wrapper">
<iframe src="https://indd.adobe.com/view/fe77b9d7-3a34-4327-9fe8-7c97c2c96eaf" frameborder="0"</iframe>
</div>
Copy link to clipboard
Copied
Here’s an example:
http://www.zenodesign.com/forum/AdobePub/
<!DOCTYPE html>
<head>
<title> Adobe</title>
</head>
<body>
<div class="vid-wrapper">
<iframe src="https://indd.adobe.com/view/fe77b9d7-3a34-4327-9fe8-7c97c2c96eaf" frameborder="0" height="800" width="100%"</iframe>
</div>
</body>
</html>
Copy link to clipboard
Copied
Great, thanks Rob! Really appreciate it.