Adding my own html

Hi,
I wanted to add background music and other stuff on my page. I know how to do this using raw html but there doesn't seem to be an option to insert some html into the site. Am i missing something.
Mark.

Mark,
Your previous HTML coding skills will come in handy, but don't let them get in the way of the simplicity of iWeb...Here is the thread with my step-by-step directions for adding HTML...
http://discussions.apple.com/message.jspa?messageID=2446855#2446855

Similar Messages

  • Set up my own HTML 5 DocType

    I would like to set up my own HTML 5 DocType, eg: "mydefault.html" file in Dreamweaver CS6 to have an additional code.
    I have been searching everywhere to find out how to do it without success.
    Can you please point me where and how to set up?

    Hi Preran,
    The code i intend to add is something like:
    <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
    <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
    <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
    <!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    What i expect is i can set my own HTML 5 DocType, so i can select this customize blank page & the additonal code i want is already insde there, so i no need to type manual everytime when create a blank page. Thx...

  • Adding to own site

    Hi - I love iWeb, and want to use it for a blog on my own site - www.nigelsecostore.com - rather than hosting at .mac. It seems easy enough to do, but the options that get lost ie adding comments and searching, seem pretty fundamental.
    Anyone know if Apple are planning to update iWeb to allow these functions on non .mac servers?
    you can view my blog here:
    http://web.mac.com/nigel.berman/iWeb/NigelsEcoStore/Blog/Blog.html
    Macbook pro   Mac OS X (10.4.6)  
    Macbook pro   Mac OS X (10.4.6)  

    You could sign up for google adsense and get search for your site. It will then search everything, including blogs. I've got it for my site if you'd like to see how it integrates with the rest of the site.
    http://www.rowan-cottage.co.uk/Site/Sitemap.html
    Michael
    iMac Intel Core Duo 2GHz www.rowan-cottage.co.uk
    As there is advertising on my site, I am required under Apple Discussions Terms of Use to state that I may receive some form of compensation, financial or otherwise, from my recommendation or link

  • Is there a limit to amount of code that can be added to the HTML Header?

    I've got several javascript functions in the HTML Header section of the page attributes. I recently added another function and now receive an HTTP 404 Not Found error at runtime when navigating to the page. When I remove the function the error is gone. I don't think there is anything wrong with the function because even when I copy and rename an existing working function, this error occurs...as if I've exceeded some size limit. Any ideas?

    I now have a better understanding after reading this thread: Javascript as static file or on filesystem?
    As the post indicates, there are essentially two ways of including a .js file:
    1) upload as static file to the workspace or application and refer to it using the #APP_IMAGES# or #WORKSPACE_IMAGES# tag.
    2) put it on the webserver as a file on the filesystem under the images directory and refer to it using the #IMAGE_PREFIX# tag.
    For now (since I don't have permissions to the file server directory) I have created a .js file and uploaded it as a static file in Shared Components. I referenced the file as below, but when I go the page at runtime, none of my functions are being utilized. Is it because the web server is not using this static file yet because of caching? Does it need to be restarted in order to start using the uploaded js file?
    <script type="text/javascript" src="#WORKSPACE_IMAGES#apex_selection_criteria_page.js">
    </script>

  • Adding Rows to HTML Web Gallery

    I am satisfied with Lightroom over all, but there is one item, I could not use at moment -> the web-gallery. I would like to use the standard HTML Gallery, but I need to add more rows. Wish: 3 columns, 8-9 rows (at moment I use Fotostation to built up my web galleries in this way -> see http://www.npx-photo.com -> click on a picture to get to the gallery).
    Is it possible to change the code of the standard gallery? Does anyone has had the same problem and solved it?
    Any help would be great to make my life much easier ;-)
    Norbert Pogrzeba
    http://www.npx-photo.com

    Don't know if this helps you at all. It's not LR of course.....
    In CS2 Adobe added two Flash-based templates you can use for your online Web Photo Gallery. Even cooler is the fact that you can now add a background music track to one of these Flash galleries. Just follow these steps: First find the MP3 audio track you want to use as your background music and rename the file as "useraudio.mp3". Then open your Photoshop CS2 application folder and navigate to Presets>Web Photo Gallery. Inside that folder look for either Flash Gallery 1 or Flash Gallery 2. Depending on which gallery you chose within Photoshop, drag-and-drop your audio file into the corresponding folder. That's it! You've got background music.

  • Why extra space added in generated HTML?

    We've noticed that WebLogic adds a significant amount of space in generated
              HTML (like 3.5K). We're curious if there is a way to prevent this or limit
              the amount of this space since this adds extra unnecessary wait time for
              dialup users. Does anyone have experience with this?
              

              My reply was entirely garbled ... I am trying again
                        Some HTML<br>
              <% jsp code ...<br>
              %>
                                  Instead use...
                        Some HTML<% <BR>
              jsp code ...<br>
              %>
                                            "Shubhrajit Chatterjee" <[email protected]> wrote:
              >
              >Hi,
              >In case the problem has not been solved yet...
              >
              >If you begin a scriptlet tag(or any server side tag) on a new line like
              >this...
              >
              >Some HTML
              ><% jsp code ...
              >%>
              >
              >then when the servlet is generated, one empty out.println() is coded
              >due to the
              >empty place between the scrptlet tag, and thus generating an empty line
              >
              >You can prevent this by starting every scriptlet ( or any other serverside
              >tag
              >in the same line as HTML as given below
              >
              >Some HTML<%
              >Some JSP
              >%>
              >
              >However, only two characters (CR and LF are added if the scriptlet starts
              >on the
              >first column, so this won't make the page much slower. Avoid giving spaces
              >before
              >starting scriptlets, however...
              >
              >Shubhrajit
              >
              >
              >
              >"Dmitry Namiot" <[email protected]> wrote:
              >>
              >>Check out Optimize taglib from Coldtags suite:
              >>http://www.servletsuite.com/jsp.htm
              >>
              >>"chip" <[email protected]> wrote:
              >>>We've noticed that WebLogic adds a significant amount of space in generated
              >>>HTML (like 3.5K). We're curious if there is a way to prevent this
              >or
              >>>limit
              >>>the amount of this space since this adds extra unnecessary wait time
              >>>for
              >>>dialup users. Does anyone have experience with this?
              >>>
              >>>
              >>
              >
              

  • Contribute adding its own source code !!!

    Here is the problem
    <div id="header">
    <table width = "100%" padding = "0" cellpadding="0">
    <tr>
    <td width = "50" style="text-align: left; "><img src="images/whitelogo.gif" /></td>
    <td width = "300" style="text-align: left; float:left;"><h3><br />Fraserburgh Harbour Commissioners</h3></td>
    </tr>
    </table>
    <p style="margin-top: 0; margin-bottom: 0;"> </p>
    <div id="menu">
    <ul style="margin-bottom: 0">
    <li><a href="index.php">Home</a></li>
    <li><a href="fishing.php">Fishing</a></li>
    <li><a href="news.php">News</a></li>
    <li><a href="shiplift.php">Ship lift</a></li>
    <li><a href="drydock.php">Drydock</a></li>
    <li><a href="cargo.php">Commercial Cargo</a></li>
    <li><a href="hands.php">Health & Safety</a></li>
    <li><a href="history.php">History</a></li>
    <li><a href="key.php">Key Personnel</a></li>
    <li><a href="contact.php">Contact Us</a></li>
    </ul>
    </div>
    <!-- end #menu -->
    </div>
    Th 7th line down
    <p style="margin-top: 0; margin-bottom: 0;"> </p>
    is being added by contribute. It is then affecting content on the rest of the  page.by moving it down. The area of the page isn't even an editable area!
    Can anyone advise ?
    Here is the page in question.
    Here is what it should look like.
    Thanks John

    Please refer to, http://blogs.adobe.com/contribute/2010/06/paragraph_spacing_options_in_a.html for the answer.

  • Why does my contact form not work either muse or my own html coded form?

    I used the muse contact form and uploaded the website to my host but it does not send emails... it says it has sent but nothing arrive to email account.
    Then i decided to remove the muse contact form and use my tried and tested EmailMeForm html embed code which works. BUT........... if i look on preview the contact form stays in the correct position on the page. when i upload to the host the contact form moves up the page.
    can somebody help?

    Hi,
    When I first enabled my Muse contact form, it reported that the email was sent but I didn't receive the email.  I discovered the emails were going to my spam folder.  This was when I used my own domain email address--the same domain as my Muse website.  When I put my Gmail address into the contact widget, the messages arrived in Gmail as expected.
    I am able to receive messages in my initial email account (my domain name) by creating a message rule.  I also found that you can use two email addresses in the contact widget form, separating them with a comma: [email protected],[email protected]
    John

  • Put your own HTML Codes?

    Is there a way to view the html code, and then place your own code in it just like you would with dreamweaver?

    Here's what I found. Some people might find it useful.
    I wanted to include some php code in a page.
    1 Include a text box in the page design which will display the result of your code. Put some marker in the box which will be easy to find like "php-code-goes-here".
    2 Publish the site to a folder.
    3 open your html editor, I recommend bbedit.
    4 open the file for the page and search for the marker you inserted. Replace the marker with your php code.
    5 save the file, remembering to rename it with a .php extension
    6 search all the other files in that site folder for references to the original .html file and change these references to the new .php file.
    7 upload the site folder to your server. you can delete the original html file if you like.
    8 bask in the glow that comes when your app works and smile.
    I guess this will work with java script and other code as well. I don't have a .mac account so I don't know if this works or even if .mac is enabled for php.
    G4 dual 1.42   Mac OS X (10.4.4)   ibook G4

  • How have multiple users create a song together each adding their own track

    I want to make a community get well song for a friend - Is it possible to make a track in Garage band and send it around to others to add their voices to in Garage Band? can you drop I tunes files into garage band?

    kate162 wrote:
    Is it possible to make a track project in Garage band and send it around to others to add their voices
    yes, ctrl-click the project file in Finder and choose the compress option, send the ZIPped file to the next person, rinse, repeat.
    kate162 wrote:
    can you drop I tunes files into garage band?
    http://www.bulletsandbones.com/GB/GBFAQ.html#importfromitunes
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • SAP BW: Adding my own indexes to Cubes

    I am still on BW 3.0. I have a cube I know SAP BW provides several database indexes on FACT and Dimension Tables, but I want my DBA to add some of my own indexes
    for query performance.
    1.     If I delete indexes using manage ->Performance Tab,  will it delete my new indexes?
    2.     If in my process chain I delete indexes using processing set (?) provided by BW, will it delete my indexes?
    3.      Is it possible for me to create these indexes, say from an ABAP program,  instead of asking DBA,
    4.     Will it possible to integrate this ABAP code in my process chain (when deleting, recreating indexes).
    Before I ask my DBA to add indexes, I just want to get an idea on what is involved in managing these indexes.
    Prem

    There are cases where BW default indexes do no meet performance rquirements, so if one can create additional indexes, it will be great. For xeample, Oracle has bitmap join indexes in Oracle 10g for database warehouses.
    BW lets you create secondary indexes on ODS/DSO,  but not on Cubes. That's why I am asking this question. One can ask DBA to create these indexes, but then one needs a way to retain those indexes.

  • Adding my own music to iTunes Store

    i know i saw this information some place. Since it wasnt what i was looking for at the moment, i just glanced over it.
    What are the details for individuals to add their own music to iTunes, and make it available for purchase?
    Would ther requirements involve:
    being on a record label?
    Contractual agreements between Apple and The artist?
    etc etc

    i know i saw this information some place. Since it wasnt what i was looking for at the moment, i just glanced over it.
    did the same thing myself. took me an hour or so to find it again ... but i have a link stashed away for it now.
    this page is probably the best place to start:
    iTunes Labels & Music Marketing

  • 1.4 Drag and Drop - lost icons when added my own TransferHandler

    I've been trying to implement drag-and-drop using a custom TransferHandler on JDK 1.4.
    When I use the system default TransferHandler, I get nice icons that indicate whether the drop is allowed or not. Once I implemented my own TransferHandler, all I get is a dim grey outline when I drag -- the icon doesn't change when I drag to an area where acceptDrag() is being called versus one where rejectDrag() is being called. (I've got println's in the code so I can verify the accept/reject calls are happening, but the icon never changes).
    It would be extra nice if the icon indicated whether a COPY or MOVE operation was selected, and toggled the icon appropriately.
    From other messages in this forum, it appears that the getVisualRepresentation() method of TransferHandler is never called, so that would not help.
    I don't really need customized behavior here; I'm just trying to get back the behavior I saw with the default TransferHandler. Any suggestions?
    Thanks!
    Mike Yawn

    I've been trying to implement drag-and-drop using a custom TransferHandler on JDK 1.4.
    When I use the system default TransferHandler, I get nice icons that indicate whether the drop is allowed or not. Once I implemented my own TransferHandler, all I get is a dim grey outline when I drag -- the icon doesn't change when I drag to an area where acceptDrag() is being called versus one where rejectDrag() is being called. (I've got println's in the code so I can verify the accept/reject calls are happening, but the icon never changes).
    It would be extra nice if the icon indicated whether a COPY or MOVE operation was selected, and toggled the icon appropriately.
    From other messages in this forum, it appears that the getVisualRepresentation() method of TransferHandler is never called, so that would not help.
    I don't really need customized behavior here; I'm just trying to get back the behavior I saw with the default TransferHandler. Any suggestions?
    Thanks!
    Mike Yawn

  • Adding things in HTML

    I would like to add Youtube videos, guestbooks, etc to my page. As far as I can tell, I have to open the folder with my HTML code to insert the new codes I want. I have read other suggestions of opening the main file in text edit or word, but I am unable to do that.
    Where can I find the HTML code for my page?
    I have Iweb version 1.1.2. My program does not have the "webwidgets" or "snippets" icons at the bottom. I believe those would solve my problem, but it seems the only way for me to update my program is to purchase an expensive ILife program. Is there another way?

    Have a look at this here
    http://alyeska.altervista.org/en/iWebAlternativeHTML.html
    (skip the intro)
    or try iweb More (you will find a link to it in the menu of the previously posted page)
    Regards,
    Cédric

  • Problem adding images to html text box.

    This one, like a steering wheel down the trousers, is driving
    me nuts....
    Source can be downloaded where is says 'herehere' below (not
    used to this forum, seems a bit weird.)
    I have 2 text boxes on the stage, both are set to 'multiline'
    and set to render 'html'.
    they are also set to show the contents of the variables html1
    and html2 respectively
    via the 'Var' field in the property window.(so this is an
    Actionscript 2 thing).
    the html I'm using is a very basic <img src /> tag.
    You can use any small image file you like to try this out,
    just change both source file names.
    (mine happened to be called bonkers.jpg, but gifs and pngs
    seem to be the same).
    When I define 'html1' directly, it works fine.
    If I define 'html2' directly it works fine,
    However if I define html2 via an array, although the content
    of both html1 and html2 both seems the same,
    (and all the trace code that follows checks this) the second
    html box doesn't work.
    It took me the best part of a day to figure out it was the
    process of transferring from an array
    that was causing the issue, but why ? What does an array do
    to a string that makes it stop working at html ?
    Any help would be much appreciated.
    Thanks
    Gaz
    here
    here

    Giving them the same instance name was an error on my part, I
    think it happened when I copied the text box across, but even
    without the instance names or different instance names, the set-up
    only worked when the html didn't come via an array. Perhaps not a
    bug, but an anomaly.
    I think I need to get out of the practice of using the
    preference panel to assign variables to text boxes (something I do
    a lot when debugging), and one barrier that's held me back from
    switching to AS3. Now you've introduced me to htmlText(), there
    will be no holding me back :-)
    Thanks again.

Maybe you are looking for

  • Error when running SWN_SELSEN as background job.

    Hello Gurus, I am facing a typical problem these days. The background job for program SWN_SELSEN is scheduled in every 5 mins. It has started to fail intermittently with the error message 'An instance of the report SWN_SELSEN is still active'. But th

  • WHEN DOES THE REQUEST FORM "BOX" ARRIVE???

    i filled out an online request paper and payed the stupid shipping fee to get my mini "repaired", and i just wanted to know when the "box" would get here. By the way, i filled out the request sheet 11/19, midnight.

  • Cant install LIVE! Cam Video IM Pro

    I have a dell Dimension 8400.I purchased a brand new web cam and I can not install the software. It gets to approx 44-76% and freezes. I have tried several times. My OS is Windows XP Pro -version 2002, service pack 2. I have QUICKTIME 6.3 (only 7.0 a

  • How do I make use of Table Modifiers?

    Hi Experts I would like to use Table Modifiers in a web-report, but I have no idea about how to do it. I want to use table modifier since I am trying to do calculations based on cumulated values, which is not possible (since these are displayed value

  • SAP 4.6 work processes too often goes to completed status

    Hello, SAP 4.6 C  (Oracle 9i / windows NT) system, always work process goes to completed status. This a quality system. As of now we are only restaring the work processes (SM50->process->restart after error-> yes) manually as a temporary fix. Could y