Iweb html unwanted banner

I am having troble with iweb html. I have anwanted avertising banner that appears slightly above the html box once I publish site. I have tried getting hit counters and other html toys and see if same thing happens. No matter what I do the banner is still there. I have a godaddy account with the bassic package. If you get basic than you have the banner ads above, and that is what they look like when I use the html. I called GoDaddy and they said it looks like its trying to read a page within a page. I cant explain any more check it out and see. The customized tv has nothing to do with it because I did this also on a blank page. Heres link please help http://bghs1986.com/Buffalo_Grove/Blank.html

What's the code for that you used in the HTML snippet and where did you get it? If you got it from GoDaddy then you maybe able to remove it from the code. I said maybe depending if the add is generated by a link to GoDaddy in the code that can be removed.
OT

Similar Messages

  • How do I add an html link/banner to a page in my flash website?

    I purchased a flash website template and am in the process of editing my main.fla file.  In order to get listed on an advertising website with a higher rating, I have to place a reciprocal link to them on my site.  However, I cannot figure out how to place an html link/banner on my site for other businesses.  If I paste the html code in a text box, all that shows up is the html code rather than the image and link it is meant to generate.  Please help!

    Flash only supports a small amount of html in text areas.  If what you re trying to include is within what it supports, then you assign the text to the textfield using the htmlText property of the TextField...
    tfield.htmlText = "<a href="...">link</a>"; // will display "link" as a link

  • Using iWeb HTML code with email autoresponder software

    Hi, I'd like to be able to use iWeb html code with an email autoresponder package, however, the text in the resulting emails is unformatted and has no images. My chosen company,AWeber, haven't been able to solve this yet for me (I've tried all the major autoresponder companies with same result).
    I've tried hosting my email page both to Mac.com and www but it makes no difference.
    I've seen similar queries in this forum - has anyone cracked it yet?
    Thanks

    Not sure what you expect. Your URL is absolute and pointing to a local file resource. It's not a proper relative HTML link. Beyond that it's toatlly unclear how you actually plan to load your image and where they are hosted, so nobody can tell you anything. Either way, there is an obviously painful lack of understanding of even the most basic web techniques, so the best advise anyone would give you is to spend some time with a web search and actualyl learn some of that stuff...
    Mylenium

  • Use html ad banner in as3 AIR

    I am wanting to use an HTML ad banner in my AS3 Air for Android project, here is the html code:
    <a href="http://tracking.raftika.com/aff_c?offer_id=1106&aff_id=1708&file_id=12132&file_id=12166" target="_blank"><img src="https://media.go2speed.org/brand/files/raftika/1106/320x50_150k_ArchersVsCerberus_GEN_EN.g if" width="320" height="50" border="0" /></a><img src="http://tracking.raftika.com/aff_i?offer_id=1106&file_id=12166&aff_id=1708&file_id=12132" width="1" height="1" />
    I would need it to have a certain height and width on my app. Thanks, any and all help is appreciated.

    Unfortunately, that is not an option, as I am using this banner for an ad network( http://raftika.com). The banner is a GIF image. Is there no way to embed HTML in AIR?

  • Godaddy meta text copy/paste to iweb html

    How do I copy, rather paste the meta texts from the godaddy.com traffic blazer onto my iweb/html.... ? I will be doing it on my new macbook...

    <head>
    <title>Your Page Title Goes Here</title>
    <META name="description" content="Your Page Summary Goes Here"><META name="keywords" content="Your Meta-Tag Keywords Go Here Separated By Commas">
    </head>
    Try the above format when copying and pasting your meta-tag information. Just paste it before the </head> tag. Keep in mind that you will have to do this everytime iWeb or you make changes to your web pages. You might want to learn how to use something like MassReplaceIt to help you automate the process. Good luck!

  • IWeb, HTML Snippet, and MySQL via GoDaddy (db already built)

    I have a site (zigcodes.info) that is hosted by GoDaddy. I built the site using iWeb. No complaints there. I have a MySQL database and table built to store codes added by users. There is also one called "hit list" on another page, but I haven't finished coding it. I need to solve this problem before I can finish that page. So far, I've successfully linked my submit forms to the database. When a user adds a code, it does indeed populate into the database (hooray for small miracles).
    Of course, doing this dumps the user onto a blank white page, but I think I can fix that with a redirect at the end of the php file used by the form. My problem comes in when I try to display the codes in the database on my page. I know how to query the db using SELECT * FROM, but I can't figure out what to do with the data after that.
    I'm having a heck of a time getting the HTML Snippet widget correct in iWeb. I've seen suggestions that are all over the place, but can't seem to get any to work. I'm told that <iframe> may be a viable solution, but I am at a loss as to how. Honestly, my site is very simple and I don't need fancy functionality. All I need is a list, in table form would be nice but really not necessary, of the 30 names/codes most recently added to the db by users of my site. I can get the echo command to print headers for my data, but not the data itself.
    Will <iframe> work, and if so, how? If not, what's my best bet? Should I go with a table in the HTML Snippet widget, with tags like  <? echo "$code"; ?> inserted into my<td></td> content? Or, would it be best to use the <script src="activecodes.php"></script> solution with an external php file? Or am I way off on all of these? I do know that iWeb won't do it for me with it's own magic, but it seems like there should still be a way to add code into the HTML Snippet widget and display the db data on the iWeb designed page. Help?

    Yeah, the code you suggested isn't live now because I always remove changes to my code that affect no change. It makes for a cleaner build later. Here are some variations of your sugestion that I tried:
    <div align="center"><form name="newcodes" action="newcode.php" method="post">
    <input type="text" name="newcode"/>
    <br />
    <input type="submit" value="Add it!" />
    <input type="hidden" name="good_url" value="http://www.zigcodes.info/" />
    </form>
    </div>
    AND
    <div align="center"><form name="newcodes" action="newcode.php" method="post">
    <input type="hidden" name="good_url" value="http://www.zigcodes.info/" />
    <input type="text" name="newcode"/>
    <br />
    <input type="submit" value="Add it!" />
    </form>
    </div>
    AND
    <div align="center"><form name="newcodes" action="newcode.php" method="post">
    <input type="text" name="newcode"/>
    <input type="hidden" name="good_url" value="http://www.zigcodes.info/" />
    <br />
    <input type="submit" value="Add it!" />
    </form>
    </div>
    I even tried this because I saw other people suggesting it in similar forums:
    <div align="center"><form name="newcodes" action="newcode.php" method="post">
    <input type="text" name="newcode"/>
    <br />
    <input type="submit" value="Add it!" />
    <input type="hidden" name="redirect" value="http://www.zigcodes.info/" />
    </form>
    </div>
    All of the above produce the exact same, unwanted result: a blank white screen with the URL of my .php file (the one that handles the form post).

  • Having trouble editing iweb HTML. Help!

    Hello,
    I have been trying repeatedly to edit my websites html that I created with iweb. I bought the domain with godaddy.com and changed the cname to web.mac.com so that I could create pages and publish them to .mac, which would then show up on my .com name. After a few weeks of being satisfied, I wanted to make my site better, and iweb just wouldnt cut it. So now I have the html code for my front page of my website to include a random image upload each time the website is visited. I've been reading about how to edit the html in iweb in multiple forums and how-to guides, but none of it works for me.
    I attempted to publish to a folder and then edit the html and save it in the same place, with the same name, but this didn't have any effect on the actual website. What do I do? Someone please lay this out for me step by step and tell me what I am doing wrong. This is frustrating! Thank you.

    Thanks for your response. Your second idea is what I'm looking for ---I want a few images to display, one after another, while the homepage of my website is open. It's not really a banner that I want the images to sit in (I think of a banner as being at the top of the page). I want to position the images lower in the body of the page. I had researched this topic quite a few months ago and found some things that might help---that's why I didn't start a new thread---but I couldn't locate the information this second time. I guess it's time to start a new thread as you suggested.
    I checked out your demo. I think that my images need to cycle a little more rapidly, but your javascript is doing the thing I'm looking for. I haven't worked with java. I"m pretty low on the totem pole of web construction. I know how to insert html snippets (impressive, hunh?).
    Give this a try:
    1) add a new page to your project.
    2) add pictures to the page, keep track with their file names you'll need them for the script.
    3) add the following javascript to the page using HTML Snippet:
    <center><img id='imageholder' src='' ></img></center>
    <script type='text/javascript'>
    images = new Array();
    images.push('P8080212.JPG'); // change this to your file name
    images.push('P8080214.JPG'); // change this to your file name
    images.push('P8080215.JPG'); // change this to your file name
    // there is no limit to number of images
    // to add image, add it to the page
    // then add images.push('blah_blah'); to this script
    var image_index = 0;
    function rotateImage() {
        if (image_index == images.length - 1) { image_index = 0 } else { image_index++ }
        document.getElementById('imageholder').src = images[image_index];
    setInterval('rotateImage()', 1000); // change this number to change rotation interval, 1000 = 1 second.
    </script>
    4) in those lines: images.push('blah_blah.jpg') , change file names (inside the single quote) to your image file names
    5) size and place the HTML Snippet on the page.
    6) Set the images' opacity to 0% after you are done so they won't show on your page.
    That's it, there is no limit to number of images, when you add an image to the page, just add another line: images.push('blah_blah.jpg');
    And by the way, I have Chinese Houses in my yard and was photographing Gilia a week ago myself. Are native plants one of your interests?
    Yes, they are low maintenance, the Gilia aren't blooming yet.

  • Youtube Video in iWeb "html Snippet" is Blank?

    The html Snippet Widget shows an unhappy face icon when I publish the site to the internet in preview form. In iWeb itself the video shows up as a blank box on my site when I load the "embed" text from the Youtube video into the black box window and hit "apply".
    Here is the Youtube Embed text if it helps to analyze it. <iframe width="560" height="315" src="//www.youtube.com/embed/GdC9WLhUum0?rel=0" frameborder="0" allowfullscreen></iframe>
    I can successfully load the Youtube Widget but I dislike the 4 x 3 format with excessively large top/bottom black bands and control bar. I prefer the 16 x 9 format of the html Snippet, but it needs to function.
    Help please.
    Dan

    Okay, it is simple.  The video will not work because there are mistakes in the code that you have posted - if the code is incorrect then it won't work.
    Where you have src="//www.youtube.com/embed, the code should in fact be as follows:
    src="http://www.youtube.com/embed
    I have just opened iWeb on my Mac and copied and pasted the code, but then changing it to http:// and the video works perfectly - comes up with someone in a canoe and is entitled River Discipline.

  • IWeb HTML snippet doesn't work hosted outside MobileMe

    Hi
    I created a site with iWeb and used to HTML snippets.
    When I publish the site on MobileMe all works fine
    When I publish the site with my Dutch Web hosting company, those HTML components won't work.
    The vistor to the page finds a error message instead of the HTML widget:
    Not Found
    The requested URL /test/Welkom_files/widget3_markup.html was not found on this server.
    Apache/2.0.52 (Red Hat) Server at www.knipdoor.nl Port 80
    Does anyone know what's wrong and how to solve the issue?
    Look forward
    Henk, NL

    Does anyone know what's wrong and how to solve the issue?
    It's clearly written :
    The requested URL /test/Welkom_files/widget3_markup.html was not found on this server.
    So go to your server and see if it's really missing.
    And if you added/deleted/changed HTML Snippets, iWeb creates new widget-markup files with new sequence numbers. When you load the webpage, some widget-markup files might not be present anymore because of these changes.
    Clear the cache of the browser and reload the webpage.

  • IWeb HTML Snippet--Facebook Badge

    I've had a Facebook HTML Snippet on my iWeb home page for over a year and suddenly this week, it quit working. I just see the outline box with a question mark in the middle now. I tried deleting the snippet an republishing it several times. I've repasted the HTML code from Facebook several times into the box. When I click on APPLY, it just doesn't work anymore. I've tried several of the Facebook snippets, and none of them work either. Wonder what's changed?
    www.mikemilliorn.com

    Bonjour
    I have this kind of message when I insert the image URL in my browsers
    An issue with the URL using the HTTPS protocol...
    If you change in the code
    https://badge.facebook.com/badge/1328400337.435.9546049.png
    by
    /___sbsstatic___/migration-images/131/13141013-2.png
    you will see the badge
    I can't test more your widget because I have no Facebook account

  • IWeb HTML Snippet NOT WORKING.

    Hello!
    Whenever I open iWeb and try to insert HTML Snippet, the proper HTML rectangle that has < H T M L > and a map of the world in the background appears, just like that. No edit box has appeared. When I double click it, a blue outline appears, but still no edit box to insert the HTML code into.
    I've tried removing com.apple.iWeb.plist and also com.apple.iapp.plist or something along those lines, and also removing the iWeb folder from Caches, and nothing has worked.
    I'm using iWeb 2.0.4, obviously.

    Did you purchase iLife 09 in your attempt to upgrade to iWeb 3? If not that's why you couldn't run any of the iWeb 3 updaters. You have to have iWeb 3.0 installed from the iLife disk installed.
    What was unsuccessful about trying to reinstall iWeb 2? Did you delete all receipts with iWeb in the file name located in the HD/Library/Receipts folder before reinstalling iWeb? If no, delete them and the application and reinstall.
    OT

  • IWeb HTML Snippets and Firefox

    Hey all
    I'm using iweb to make a website and i'm using the HTML snippet to embed a .php page on my site
    Here is the code im using -
    <HTML><EMBED
    SRC="http://www.acusis.co.uk/v2/gigcurrent.php"
    HEIGHT=400 WIDTH=629></HTML>
    This displays fine in safari but in firefox it says missing plugin, and then has no idea what the plugin it needs is???
    Any ideas????

    marcbernard wrote:
    Hey all
    I'm using iweb to make a website and i'm using the HTML snippet to embed a .php page on my site
    Here is the code im using -
    <HTML><EMBED
    SRC="http://www.acusis.co.uk/v2/gigcurrent.php"
    HEIGHT=400 WIDTH=629></HTML>
    This displays fine in safari but in firefox it says missing plugin, and then has no idea what the plugin it needs is???
    Any ideas????
    Try to remove the html tag.

  • IWeb html snippet to stay permenantly in place

    In iWeb how can you make an html snippet stay permenantly on the bottom right of any page?

    Just want to make sure I understand.  Is this what you are saying?
    <script type="text/javascript">
    top.location.href = "http://MYEXTERNALBLOG/"; </script>
    I figure I must be missing something?  Tried the above and still no luck with it opening in a new window...

  • IWeb HTML snipplet not updated ?

    When I add an new HTML snipplet to my page, the code is not properly added to my page. Instead some older code seems to be added ... I can see that after adding a HREF HTML snipplet, pasting some code into the frame and adapting it to my needs although the new HREF is displayed some older code seems to be used inside after the page is uploaded to the server ...
    It seems to be a caching problem, but it still holds after removing the /Library/Caches/iWeb folder ...
    Thanks for feedback to the problem!
    Christoph
    Btw: I am using iWeb 3.0.3 (501)

    Where are you hosting your site and how are you uploading the files?  Publish your site to a folder on your hard drive and open it locally with your browser to see if the updates are there or not.  If they are there then the problem lies with the uploading of the files.
    If that's the case download and use  Cyberduck to upload the site folder to the server.  This will work for either hosting with MobileMe or a 3rd party server.
    OT

  • IWeb HTML

    Hi all! I am new to this discussions page. HAPPY NEW YEAR!
    anyway, i have the version of iWeb prior to iWeb '08 on my Mac mini (which is an awesome machine may I add) is there any way i can put widgets and HTML in without upgrading to iWeb '08???
    Thanks
    James

    Welcome James ~ Try these:
    http://iwebmore.ctrl-j.eu/iWebMore.html
    http://web.mac.com/cbrantly/iWeb/Software/iWeb%20Enhancer.html

Maybe you are looking for