Ambiera ForumDiscussions, Help and Support. |
|
|
|||||
|
How do I create blank pages and upload them, at the moment i have to create them externally and then ftp up outside of RC |
||||
|
Click "Add page". Adds an empty page. |
||||
|
wrote: Click "Add page". Adds an empty page. When i do that then it creates an html page not a plain text file. i want to do this so I can minimise both the js file and the css file when debugged. for example my blob.css page is as follows <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="generator" content="RocketCake"> <title></title> <link rel="stylesheet" type="text/css" href="blob.css.css"> </head> <body> <div class="textstyle1"> <span class="textstyle2">.blob {<br/> background: black;<br/> border-radius: 50%;<br/> margin: 10px;<br/> height: 20px;<br/> width: 20px;<br/><br/> box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);<br/> transform: scale(1);<br/> animation: pulse 2s infinite;<br/>}<br/><br/>@keyframes pulse {<br/> 0% {<br/> transform: scale(0.95);<br/> box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);<br/> }<br/><br/> 70% {<br/> transform: scale(1);<br/> box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);<br/> }<br/><br/> 100% {<br/> transform: scale(0.95);<br/> box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);<br/> }<br/>}</span> </div> </body> I dont want the html mark up in the uploaded file </html> |
||||
|
I don't think something like that is possible right now. |
||||
|
wrote: I don't think something like that is possible right now. That's what I thought. Back to work in notepad ++ and ftp for js and css ![]() |
|