|
General Page Edits |
Top Previous Next |
|
The Control Pad is displayed by running the index_btnlarge.html or index_btnsmall.html files. These are the “core” files that the Control Pad operates from.
HTML and CSS Editing We've designed the Control Pad to allow developers with easily edit the HTML and CSS to customize the design and functionality.
In the section below:
HTML Filename The index_btnlarge.html and index_btnsmall.html files can be renamed to anything you wish. Commonly index.html, default.html, or a naming convention such as <myprojecttitle.html> are used.
Title In the <head></head> section the title of the webpage can be edited. This title displays in the browser title bar and is important in search engine results.
<!-- EDIT title and meta tags as appropriate for your content --> <title>Captivate Control Pad</title>
Meta Tags: Keywords and Description In the <head></head> section of the HTML files we’ve place placeholders for keyword and description meta tags. These items are important for indexing the site with search engines, search results within large websites, and search engine optimization.
Visit Wikipedia ( http://en.wikipedia.org/wiki/Meta_element ) for more information.
<meta name="keywords" content="type,keywords,here" /> <meta name="description" content="Type the description here." />
Captivate Movie Information Also in the <head> section of the page are several items you’ll edit relating to your published Captivate movie.
<!-- EDIT path to captivate .swf file, background color, width, height --> <script type="text/javascript"> var url = "flash/sample.swf";
var flashvars = {}; var params = { bgcolor: "#FFFFFF", scale: "exactfit", wmode:"transparent"};
var attributes = {}; swfobject.embedSWF(url, "captivateMovie", "800", "460", "9", false, flashvars, params, attributes); // movieid, width, height, flashversion
|