Help with my website - the divs arent holding the text correctly

hi
i have included the html file of my website
all of a sudden the text is not staying in the borders, the green border has text and used to move down to the next line and now doesnt
can anyone also advise why when you press sapce it jumps down the page and not to the next line? i dont want a space between it but i cant seem to turn it off.
driving me mad as i had it right now its all cocked up haha

Change your CSS Style11 to the following (my changes are in red)
.style11 {
     overflow:hidden;
     word-wrap: break-word;
     color: #FFF;
     font-size: 10px;
Also, you might want to use these validation tools to check your code while you're developing the site.
HTML Validator - http://validator.w3.org 
CSS Validator - http://jigsaw.w3.org/css-validator/   
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • I need Help with a website I've created

    I need help with a website I've created (www.jonathanhazelwood.com/lighthouse) I created the folowing site with dreamweaver at my current resolution 1366 by 768. Looks great on my screen resolution but if it is viewed on other resolutions the menu moves and some of the text above and below. How can I keep all content centered and working like it does on 1366 by 768 on all resolutions. The htm to my site is below I started off with a blank template through dreamweaver CS5.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>The Lighthouse Church</title>
    <style type="text/css">
    <!--
    body {
        font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
        background: #42413C;
        margin: 0;
        padding: 0;
        color: #000;
        background-color: #000;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #42413C;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #6E6C64;
        text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ this fixed width container surrounds all other elements ~~ */
    .container {
        width: 960px;
        background: #FFF;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
        padding: 10px 0;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    #apDiv1 {
        position:absolute;
        width:352px;
        height:2992px;
        z-index:1;
        top: 171px;
        left: 507px;
    #apDiv2 {
        position:absolute;
        width:961px;
        height:1399px;
        z-index:1;
        left: 187px;
        top: 1px;
    #apDiv3 {
        position:absolute;
        width:961px;
        height:1001px;
        z-index:1;
        top: -2px;
    #apDiv4 {
        position:absolute;
        width:963px;
        height:58px;
        z-index:1;
        left: 0px;
        top: 101px;
    #apDiv5 {
        position:absolute;
        width:961px;
        height:1505px;
        z-index:1;
        top: -5px;
    #apDiv6 {
        position:absolute;
        width:962px;
        height:150px;
        z-index:1;
        left: 0px;
        top: -1px;
    #apDiv7 {
        position:absolute;
        width:361px;
        height:25px;
        z-index:2;
        left: 35px;
        top: 1308px;
    #apDiv8 {
        position:absolute;
        width:320px;
        height:24px;
        z-index:2;
        left: 200px;
        top: 1479px;
    #apDiv9 {
        position:absolute;
        width:962px;
        height:63px;
        z-index:3;
        left: -10px;
        top: -1292px;
    #apDiv10 {
        position:absolute;
        width:270px;
        height:27px;
        z-index:2;
        left: 200px;
        top: 1478px;
    #apDiv11 {
        position:absolute;
        width:961px;
        height:44px;
        z-index:3;
        left: 195px;
        top: 183px;
    -->
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    #apDiv12 {
        position:absolute;
        width:295px;
        height:23px;
        z-index:4;
        left: 198px;
        top: 1px;
    #apDiv13 {
        position:absolute;
        width:135px;
        height:22px;
        z-index:5;
        left: 1001px;
        top: 3px;
    #apDiv14 {
        position:absolute;
        width:309px;
        height:992px;
        z-index:1;
        left: 33px;
        top: 479px;
    #apDiv15 {
        position:absolute;
        width:327px;
        height:999px;
        z-index:1;
        left: 324px;
    #apDiv16 {
        position:absolute;
        width:262px;
        height:1000px;
        z-index:2;
        left: 674px;
        top: 477px;
    #apDiv17 {
        position:absolute;
        width:85px;
        height:34px;
        z-index:1;
        left: -379px;
        top: 1001px;
    #apDiv18 {
        position:absolute;
        width:200px;
        height:115px;
        z-index:6;
    #apDiv19 {
        position:absolute;
        width:168px;
        height:31px;
        z-index:3;
        left: 448px;
        top: 1451px;
    #apDiv20 {
        position:absolute;
        width:94px;
        height:33px;
        z-index:3;
        left: 384px;
        top: 1477px;
    body {
        background-color: #000;
        margin-left: 0px;
        margin-right: 0px;
    #apDiv21 {
        position:absolute;
        width:920px;
        height:200px;
        z-index:4;
        left: 19px;
        top: 233px;
    </style>
    </head>
    <body>
    <div class="container">
      <div class="content">
        <div id="apDiv5">
          <div id="apDiv16">
            <div id="apDiv17">
              <map name="Map2" id="Map2">
                <area shape="rect" coords="4,2,77,28" href="http://www.myspace.com/lighthousechurch1" />
              </map>
              <img src="paypal-donate-button.png" width="83" height="33" border="0" usemap="#Map" />
              <map name="Map" id="Map">
                <area shape="rect" coords="2,2,80,30" href="https://www.paypal.com/us/cgi-bin/webscr?cmd=_flow&SESSION=HgApKd0bxyPQv1ixwBW3HgWXaLxPIiT Po9gSsRELLQp72IZ2-_8uvSmCLRO&dispatch=5885d80a13c0db1f8e263663d3faee8d9384d85353843a619606 282818e091d0" />
              </map>
            </div>
          </div>
          <div id="apDiv21">
            <blockquote>
              <blockquote>
                <blockquote>
                  <blockquote>
                    <blockquote>
                      <blockquote>
                        <p><img src="faithexplosion.png" width="314" height="225" /></p>
                      </blockquote>
                    </blockquote>
                  </blockquote>
                </blockquote>
              </blockquote>
            </blockquote>
          </div>
          <div id="apDiv14">
            <div id="apDiv15">
              <div>
                <div>
                  <p> Special Message from Perry Stone </p>
                  <h2> Was Jesus Born on December 25?</h2>
                  <p> 12/20/2010 </p>
                  <p><img alt="iStock_000003631829XSmall" src="http://www.voe.org/images/iStock_000003631829XSmall.jpg" width="300" height="234" /></p>
                  <p>Last   year, in response to the growing number of Christians who celebrate   Hanukkah but hate Christmas, I wrote an article for this website titled   &ldquo;Hanukkah or Christmas?&rdquo; I explained why I think Jesus was either   conceived or birthed on December 25.</p>
                </div>
              </div>
              <div>
                <div><a href="http://www.voe.org/Prophecy-Update/what-happened-to-global-warming.html"> READ MORE</a>
                  <p> Prophecy Update </p>
                  <h2> What Happened to Global Warming?</h2>
                  <p> 12/17/2010 </p>
                  <p> </p>
                </div>
              </div>
              <div>
                <div></div>
              </div>
              <div>
                <div></div>
              </div>
            </div>
            <div>
              <p><font size="2">Special Word</font></p>
              <p><font size="2">January 7th, 2011</font></p>
              <p> <font size="2">Dear Viewers:</font></p>
              <p><font size="2">We have now entered into one of the most trying times; but also one of the most glorious            times in church history.  Many things are coming upon the world and also upon the church and we (the church) must be totally            prepared to take up our cross daily and venture out into the lost and</font></p>
              <p>  <a href="http://sermon.lighthousechurchinc.org/2011/01/07/special-word-1711-evangelist-barbara-lync h.aspx" target="_parent">Click Here for More</a></p>
            </div>
            <p> </p>
            <div></div>
            <div>
            <!--//              weAddFlash("lhi09hdr.swf",800, 100,"true","true","high","showall","true","#ffffff");              //--></div>
            <div></div>
            <p> </p>
          </div>
          <img src="lighthousegraphic2.jpg" width="960" height="1509" />
          <div id="apDiv20"><img src="myspacebutton.jpg" width="89" height="30" border="0" usemap="#Map3" />
            <map name="Map3" id="Map3">
            <area shape="rect" coords="3,2,87,28" href="http://www.myspace.com/lighthousechurch1" />
          </map>
      </div>
        </div>
      <p> </p>
      </div>
    <!-- end .container --></div>
    <div id="apDiv10"><font size="1"><font color="#FFFFFF">Copyright 2011 The Lighthouse Church Inc.</font></font></div>
    <div id="apDiv11">
      <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="#">Home</a>    </li>
        <li><a href="#" class="MenuBarItemSubmenu">Our Pastor</a>
          <ul>
            <li><a href="#">Fresh Word</a></li>
            <li><a href="#">Itinerary</a></li>
            <li><a href="#">Prophetic Word</a></li>
            <li><a href="#">Sermons</a></li>
            <li><a href="#">Special Words</a></li>
            <li><a href="#">Word of Month</a></li>
          </ul>
        </li>
        <li><a href="#">Men Ministry</a></li>
        <li><a href="#" class="MenuBarItemSubmenu">Ministers</a>
          <ul>
            <li><a href="#">Chris Gore</a></li>
    </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Our Church</a>
          <ul>
            <li><a href="#">Contact Us</a></li>
            <li><a href="#">Donate</a></li>
            <li><a href="#">Events</a></li>
            <li><a href="#">Our Store</a></li>
            <li><a href="#">Prayer Request</a></li>
            <li><a href="#">Salvation</a></li>
            <li><a href="#">Subscribe</a></li>
            <li><a href="#">Vision</a></li>
            <li><a href="#">We Believe</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Resources</a>
          <ul>
            <li><a href="#">Prepare for Disaster</a></li>
            <li><a href="#">How to Fast</a></li>
            <li><a href="#">Heaven &amp; Hell</a></li>
            <li><a href="#">Warfare Prayers</a></li>
            <li><a href="#">Wisdom Words</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Prophetic</a>
          <ul>
            <li><a href="#">Article Archive</a></li>
            <li><a href="#">Audio Prophecies</a></li>
            <li><a href="#">Color for Year</a></li>
            <li><a href="#">Major Articles</a></li>
            <li><a href="#">Prophecy Archive</a></li>
            <li><a href="#">Prophetic Articles</a></li>
            <li><a href="#">Word for Year</a></li>
          </ul>
        </li>
      </ul>
    </div>
    <div id="apDiv12"><font size="1"><font color="#FFFFFF">6 South Railroad Ave Wyoming,DE 19934</font></font></div>
    <div id="apDiv13"><font size="1"><font color="#FFFFFF">Phone:(302) 697-1472</font></font></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

    Look at all the apdiv's you have.  Those are absolutely positioned layers.  I'm assuming by your post that you are very new to Dreamweaver and HTML and CSS.  I would highly recommend not using absolutely positioned layers until you have a better grasp on HTML and CSS.
    Looking at your code I would suggest that you consider using one of Dreamweaver's built in, or downloadable templates as a starting point and work from there. 
    http://www.adobe.com/devnet/dreamweaver/articles/dreamweaver_custom_templates.html

  • I had to put my computer by together without migration or time machine I NEED help with order of the files?

    I had to put my computer by together without migration or time machine I NEED help with order of the files?

    Hi, where are these other files exactly?

  • Hi. I have an iPhone 4s. The music doesn't play when I connect it to my car stereo. It used to play previously but stopped playing all of a sudden. My phone is getting charged when I cut it to the USB port. Please help with this. The iOS is 6.1.3.

    Hi. I have an iPhone 4s. The music doesn't play when I connect it to my car stereo. It used to play previously but stopped playing all of a sudden. My phone is getting charged when I cut it to the USB port. Please help with this. The iOS is 6.1.3.

    Hello Priyanks,
    I found an article with steps you can take to troubleshoot issues with an iPhone not connecting to your car stereo:
    iOS: Troubleshooting car stereo connections
    http://support.apple.com/kb/TS3581
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Please i need help with switch from the us store to malaysian store how i can switch

    Please i need help with switch from the us store to malaysian store how i can switch

    Click here and follow the instructions to change the iTunes Store country.
    (82303)

  • Is there a way to create a heading with shading behind the text and thin lines above and below?

    I'm working with InDesign CS6, Windows 7.
    Is there a way, using paragraph rules, to create a heading with shading behind the text and thin lines above and below the text?
    I'd like to create headings that look like these:
    Thank you!

    I have a document where I almost do such, but without the fill. I use a Head Style which Spans Columns for this instance; it allows the haeds to flow and fill the width.
    Paragraph Rules above and below are turned on with plenty of offset.
    I tweaked my setting to accomodate your need - It required only one instance, not above and below, and changing the stroke to a double stroke. 
    It may be necessary to create a custom stroke to modify the proportion of stroke vs fill. There is a difference of thin-thin and  thick-thick, neither of which seemed perfect but might be dependent on the Character height.
    Creating custom strokes is accomplished via the Strokes Panel.

  • How to solve the problem related with inputing of the text into Wordpress from Firefox 9 and 9.0.1. The problem is that after inputing the formatting gets lost. Taking in account high popularity of Wordpress I suppose the problem is quite serious.

    How to solve the problem related with inputing of the text into Wordpress from Firefox 9 and 9.0.1.
    The problem is that after inputing the formatting gets lost.
    Taking in account high popularity of Wordpress I suppose the problem is quite serious.

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Troubleshooting extensions and themes]]
    * Clipboard not working -> [http://kb.mozillazine.org/Clipboard_not_working]
    * Rich Text Editing -> [http://kb.mozillazine.org/Rich_text_editing]
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    Check and tell if its working.
    Might not be related to your problem but some of your Plugins are out-dated
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    * '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''

  • Help getting help with iTunes (or, the elusive product registration number)

    My almost brand-new iPOD classic is now useless because iTunes no longer works on my Vista 64. It was fine for a while. Now, when my computer starts up, I get an error message that reads:
    iTunes was not installed correctly. Please reinstall iTunes Error 7 (Windows error 14003).
    I tried all the obvious stuff, and then decided, what the heck, I'm a paying customer, I'll get some online help for Apple. But much to my frustration and rage, I can't get any help without my product registration number. I can't read the microscopic number on the back of my iPod, and because i can't open iTunes, I can't find my registration number that way. Do you know, you can't even call Apple without the product registration number? So I can't get any help. I'm so frustrated. I got my iPod on Airmiles, so I don't even have a bill.
    Is there any other way to find my registration number?

    hi dan,
    i am using iWeb for a non .Mac account! the reason behind is that external hosters offer better online space and loading times than .Mac. Yet on the other hand, the iDisk, Web-Mail, Addressbook and iCal features that are offered with .Mac make the 99€ a year quite worthy!
    i myself do not use .mac because my website is simply to large and the prices are not accepteable that .Mac offers for more space!
    the next thing is that your .Mac account username will be in you URL and you cannot stay anonymous! your address will be something like this:
    http://web.mac.com/USERNAME
    so now you will share your username with the whole wide world! the other thing is that iWeb was designed to work hand in hand with .Mac. This means that some cool feature fall off when you publish externally, meaning to a different host, eg.: 1and1, godaddy, strato. These features include Slideshows, Password-Protection, Blod-Search and other small things!
    yet when you still choose to go for .Mac - no one will get your address unless you tell them what the address is! it is extremely hard to find, if not impossible, your .mac address under Google or Yahoo! So your username is somewhat protected!
    Here are some good hosters:
    http://godaddy.com
    http://1and1.com
    http://strato.de (german)
    you practically have to also see for your country what hosters offer. 1and1 is extremely cheap and is over the world! Yet when you choose to have a external host - then you have to pay extra and if you close your .Mac account you cannot buy music in the itunes store!
    here is a very good FTP program to upload your files to a different host:
    http://cyberduck.ch
    http://karreth.com/iweb/Host%20To%20Other%20Than%20.Mac.html
    i hope that helped!
    max

  • Need help with how to shrink DIV boxes with text in them

    Hi,
    I am coming up the learning curve with Dreamweaver CS3.
    Within a container section, I have enclosed text with DIV
    tags, creating a CSS ID to add color to the background, and then
    applied other class styles to the text. Result is that now the text
    is enclosed by the background color applied to the CSS ID box.
    What can you do to tighten-up the box around the text? Tried
    playing with the BOX properties but the background shrinks leaving
    white space between the BOX area and adjacent DIVs (how do get rid
    of the white space??) and the text stays in the same spot, the box
    showing sometimes only partial text.
    What I want is to create is rows of links/text, each row with
    a different colored background, the box tightly wrapped around the
    text, and no white space between the boxes. How do I do that?
    Help is greatly appreciated, as a newbie I can get 90% there
    but the finer details still escape me. Thanks for your help.

    Hi,
    I am coming up the learning curve with Dreamweaver CS3.
    Within a container section, I have enclosed text with DIV
    tags, creating a CSS ID to add color to the background, and then
    applied other class styles to the text. Result is that now the text
    is enclosed by the background color applied to the CSS ID box.
    What can you do to tighten-up the box around the text? Tried
    playing with the BOX properties but the background shrinks leaving
    white space between the BOX area and adjacent DIVs (how do get rid
    of the white space??) and the text stays in the same spot, the box
    showing sometimes only partial text.
    What I want is to create is rows of links/text, each row with
    a different colored background, the box tightly wrapped around the
    text, and no white space between the boxes. How do I do that?
    Help is greatly appreciated, as a newbie I can get 90% there
    but the finer details still escape me. Thanks for your help.

  • Help with m.website versions on safari on my iPad.. Help

    My question is a bit diff bit you might be able to help me never the less. I just don't get m. Site versions).. I dont like the m. versions on safari when I use facebook for example. As of today every time I log into Facebook from the safari website it looks like the app version, which is odd. It never did that before. I looked at the browser bar and it shows http://m.facebook.com and not http://www.facebook.com as it used to show and be on my safari browser
    . How do I get ride of the automatic m.facebook and go back to www.facebook.com version Does it make sense? Please HELP maybe you can help. I use iPad.

    Hi Jonathan, first, at the bottom of the safari "web browser" it doesn't give me the version of full site or desktop browser. It usd to until tonight, which is what's odd.
    Second, you don't need to be sarcastic with your 3rd point on me getting a job with Facebook.
    3rd thank you for the info
    4th, I have download chrome and now it's using full website version and no the (m. Version) on Facebook, only downside that chrome is very slow...
    Facebook was always identifying it self as iOS safari yet I could still used he full version on the browser, now it doesn't work. And it always shows www.m.blahblah.com etc... It used to always show. Www.blahblah.com without the m. I front. That is what is bothering...
    As I am not a tech geek, I thought I'll as for help...that's what this forums are for correct,

  • Help with form sending the data to email

    I have looked all over the Internet for help with this.  I have tried numerous video tutorials and for some reason I can't get it to work.  I have created a form in flash cs4 AS2.  It is a contact information form where the user fills out their information and sends it.  I have created a the form in a movie clip (I have also tried it not in a movie clip) with the form components inside that movie clip.  I have given each component on the form an instance name.
    The form has:
    Full name (with instance name=name)
    Company (with IN =company)
    Title (with IN = title)
    Phone (with IN = phone)
    Email (with IN = email)
    Topic combobox (with IN=topic)
    Message box (with IN=msg)
    Submit button (with IN=submit)
    I need help with the actionscript writing.  I am VERY new to flash and have never done any scripting really.  Does anyone have a sample file I can look at to see how it works or can someone IM me and I can send my file for them to help me?
    My IM is logan3975
    Any help is greatly appreciated.  I consider myself a pretty technical person so I do learn quick...I just need some guidance until I wrap my head around how this all works.  Thanks.

    Here's a link to a posting elsewhere some had had that may provide some useful info (?)
    http://board.flashkit.com/board/showthread.php?t=684031

  • Help with Chicken of the VNC and Airport

    I had my airport working with Chicken of the VNC perfectly and lost the settigns. Now I cannot get it to work again. What do I do a bridge or port forwarding? And how?
    There is so much contradictory information that I have just spent the whole night not doing anything of use. Any precise help would be greatly appreciated.
    Thanks in advance!

    The basic steps to configure for VNC are as follows:
    o Configure the machine you want to control (VNC Server) to allow VNC access. If the VNC Server is behind a router, then this would entail at least three things: 1) Configure the OS X Firewall to allow VNC access, 2) Configure the router to map port 5900 to the VNC Server, and 3) Know the WAN IP address of your router. (Note: One way to get the WAN IP is to go to the web site http://whatismyip.com and make a note of the ip address.)
    o Connect to your VNC Server from a VNC Client from the Internet.
    And I tried to do port forwarding but it doesn't seem to work.
    Let's double-check your port mapping settings.
    1. Reserve a DHCP-provided IP address for the VNC Server.
    Internet > DHCP tab
    o On the DHCP tab, click the "+" (Add) button to enter DHCP Reservations.
    o Description: <enter the desired description of the host device>
    o Reserve address by: MAC Address
    o Click Continue.
    o MAC Address: <enter the MAC (what Apple calls Ethernet ID if you are using wired or AirPort ID if wireless) hardware address of the VNC Server>
    o IPv4 Address: <enter the desired IP address>
    o Click Done.
    2. Setup Port Mapping on the AEBSn.
    Advanced > Port Mapping tab
    o Click the "+" (Add) button
    o Service: <you can ignore this setting>
    o Public UDP Port(s): 5900
    o Public TCP Port(s): 5900
    o Private IP Address: <enter the IP address of the VNC Server from the above step>
    o Private UDP Port(s): 5900
    o Private TCP Port(s): 5900
    o Click "Continue"
    (ref: "Well Known" TCP and UDP ports used by Apple software products)

  • Help with printing out the # of quarters, nickels, dimes, and etc... using

    Hi, im new to java and im using a program called blue j.
    anyway heres my question.
    , I recommend you dont do the program for me, but rather help gear me in the right direction of things.
    In this program they want me to have it print out the # of dollars,quarters,nickels,dimes, and pennies.
    They have provided me with a base program to start off with which is this.
    import chn.util.*;
    public class ComputeChange
       *  The main program for the Change class
       * @param  args  The command line arguments - not used
      public static void main(String[] args)
        double purchase, cashPaid, temp;
        int change, remainder, dollars, quarters, dimes, nickels, pennies;
        ConsoleIO keyboard = new ConsoleIO();
        System.out.print("Enter amount of purchase --> ");
        purchase = keyboard.readDouble();
        System.out.print("Enter amount of cash paid --> ");
        cashPaid = keyboard.readDouble();
        temp = cashPaid - purchase;
        dollars = (int) temp;
        temp = temp - (int)temp + 0.0000001;
        change = (int)(temp * 100);
        System.out.println();
        System.out.println("$" + dollars + "." + change);
    }Ive been given the amounts 23.06 for amount of purchase
    and 30.00 for the amount paid. that should give me the difference of $6.94
    It should print out the amount of change as the following
    6 dollars
    3 quarters
    1 dime
    1 nickel
    1 penny.
    IVe tried a few methods for printing out the # of each coin type, but i simply dont get how they are using temp or what type of funciton i need to follow. Any hints or pointings in the right direction would help. Since i need to learn this.
    Thanks a lot and i hope i can get some tips. !
    ~Jbinks

    And here's my contribution to the scratch batch... :o)
    class Coins {
        private java.util.Map<Coin, Integer> count = new java.util.HashMap<Coin, Integer>();
        enum Coin {
            DOLLAR(100), QUARTER(25), DIME(10), NICKEL(5), PENNY(1);
            private final int value;   
            Coin(int value) { this.value = value; }
            public int value() { return value; }
        public Coins(int centsValue) {
            for (Coin c : Coin.values()) {
                count.put(c, centsValue / c.value());
                centsValue %= c.value();
        public void display() {
            for (Coin c : Coin.values()) {
                System.out.println(c + ": " + count.get(c));
    public class CoinsDemo {
        private static java.util.Scanner keyboard = new java.util.Scanner(System.in);
        public static void main(String[] args) {
            int price = getPennies("Enter amount of purchase --> ");
            int paid = getPennies("Enter amount of cash paid --> ");
            new Coins(price - paid).display();
        private static int getPennies(String prompt) {
            System.out.print(prompt);
            double d = keyboard.nextDouble();
            System.out.println();
            return (int)(d * 100);
    }

  • Help with multilingual website

    Hi, I'm sorry if it's already answered, but I'm new here and I couldn't find it.
    I'm making a website for someone and he's asked me for one that you can change the language with the flagsystem. So the original website is in Dutch and you can change the website to English, French and German
    I know, the flags isn't really the good thing to do it with, but hey, he wants it. So, my question is:
    Can anyone give me an example or a link where there's a good to follow tutorial for it? I know the best way is to do it with php, and that the text in different languages are all seperate files so, when needed to be changed, it can be done easily.
    I've found some codes online, but not really one that's explained how to do things good.
    I'm new to php, but I'm willing and eager to learn.
    Thanx

    Google recommends using different URLs for each language.
    http://googlewebmastercentral.blogspot.com/2010/03/working-with-multilingual-websites.html
    French
    http://fr.yourdomain.com/
    German
    http://de.yourdomain.com/
    English
    http://en.yourdomain.com/
    Spanish
    http://sp.yourdomain.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • I need help with problems after the April 2015 update

    In December 2015 I purchased an LG G3. It started out great. Then often people couldn't hear me..sometimes with the speaker on, sometimes with it off, sometimes on bluetooth with my car,.or my voice faded in and out, or sounded muffled or garbled.  After over a month of these frequent audio problems and several calls to Verizon during which they boosted my signal and guided me through a factory reset which took all of my photos out of their albums, the final suggestion a few days ago (April 21, 2015) was to download the new software update. I did and I'm not happy with some of the changes e.g. I wish I could have the old  home touch buttons back,The jury is still out on sounds quality, but now I have two new annoying problems.
    The first is that my car and phone used to bluetooth (connect) as soon as I put my engine on. Now, every time I get in my car I have to go into settings and give the phone permission to have other devices find my phone. Then after one or two tries the bluetooth eventually connects them. I am a Realtor and I need my phone and car to connect automatically every time I get in. I can give the phone permission to connect for up to an hour, but then it goes off. How do I get the opton to stay on?
    The second is that I often turn my data off, and I used to do it from the notification panel that I can pull down. I just pulled it down and tapped "data" and the light would go off if the data was off and on if it was on.  Now when I tap "data" I can turn it on or off, but the data button stays lit so when the data is off the light is still on. No more quickly glancing to see the data status...I have to tap it and read the notice to find out. Yes, 3G or 4G light up in tiny letters at the top, but data is the only button that stays lit when it is turned off.
    Am I missing the steps that would fix these issues?

    SiBIMe,
    I am sorry to hear of the issues with your device before and after the update. We want to restore the love back to your device. Please keep us posted on the audio issues to see if the update did assist with that issues.
    In regards to the two new problems, we want to make sure we get this worked out. Do you have issues with the device only auto connecting to your car or all bluetooths?  Do you receive and error message when the device doesn't auto connect and you attempt to connect manually but it fails? As for the data icon, when you tab on the data icon from the notification tab does the 4G actually disappear even thought the data icon is still lit?
    Please test your device in Safe mode and let us know if you still experience the same issues. Here is how to place the device in safe mode. http://vz.to/1owbN8K
    LindseyT_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for

  • New Contact groups not appearing in iTunes

    I just got my iPhone 3G and attempted to set up syncing with iTunes (v7.7). I added a new group in Address Book, put some contacts in it, and then went to iTunes. I wanted to sync only certain groups from Address Book, so I turned that option on, but

  • Error getting schema root with OLAP API

    I am getting the following error: java.sql.SQLException: Io exception: Connection reset by peer: JVM_recv in socket input stream read      void oracle.jdbc.dbaccess.DBError.throwSqlException(java.lang.String, java.lang.String, int)      void oracle.j

  • Cannot get into settings to backup

    I cannot get into mt settings area.  I need to backup.  It just flashes to blank screen then goes right back to home screen.

  • Actual ship date for first round of iPhones 4's?

    Anyone have any idea when the 4's will actually begin shipping. I pre-ordered from the AT&T store and received my confirmation for the delivery on the 24th. I was just wondering when the start getting sent out because I won't feel comfortable about m

  • CFEclipse and RDS on Mac OSX (Tiger)

    I'm running CF8 with the stand-alone CF web server on a MacBookPro running OS X (Tiger). I installed Eclipse 3.3 and the CFEclipse plug-in, then ventured to install the ColdFusion8 Extensions for Eclipse (Release 3.3.1.1). All installed without error