Adding an iWeb calendar that looks like this... (link provided)

Hello
I would like to know how to add a calendar that looks and acts like the one on this site. It just shows the month and the number of the day and that is all. I do not want all the iCal features that everyone talks about on various discussions on my website. I just want it too look like the iCal app and obviously works properly, very simple. Can anyone help. Thanks
here is the example:
http://www.nwpublishing.org/

For the month use
<script type="text/javascript">
var d=new Date();
var month=new Array(12);
month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";
document.write( month[d.getMonth()]);
</script>
For the day use:
<script>
var mydate=new Date()
var day=mydate.getDay()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
document.write(daym)
</script>
Change the size, color and font to suit your needs. You'll have to place the two widgets over the calendar image to get what you want. Also resize each snippets window without hitting the Apply button afterward to make sure the longest month name will not be cut off and the same for the date window.
See this demo page: Date/Time.

Similar Messages

  • I would like to delete a google pref cookie that re-establishes itself instantly even when I am on a blank new tab that looks like this: PREF ID=eb1514ca52c9d

    I would like to delete a google pref cookie that re-establishes itself instantly even when I am on a blank new tab-- it looks like this:
    name: PREF
    content: ID=eb1514ca52c9d753:TM=1403658310:LM=1403658310:S=CQKzVsy8LHiPFFmX
    domain: .google.com
    path: /
    send for: Any type of connection
    it might be helpful just to know what it's doing, since I don't have any google/gmail/youtube accounts...

    What page are you using for your new tab page? Is it completely blank or is it the page with the thumbnails, but with the thumbnails hidden (in that case, there usually is a grid-like icon on the upper right side of the page)?
    You can check the current setting here:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''newtab''' and pause while the list is filtered
    (3) Double-click the '''browser.newtab.url''' preference and enter your preferred page if it isn't what you want:
    * ''Page thumbnails (default)'' => about:newtab
    * ''Blank tab'' => about:blank
    * ''Built-in Firefox home page'' => about:home
    * ''Any other page'' => full URL to the page
    Press Ctrl+t to open a new tab and verify that it worked. Fixed?
    But... extensions can override this setting. If you are getting a page other than the one you specified, that could be explanation.
    Any luck?

  • How to design a dashboard to look like this link

    Hi all
    i have been trying to search for links/ papers or documents to help me to design my dashboard to look like this
    https://www.google.com/search?biw=1600&bih=775&q=oracle+bi+dashboard+examples+11g&bav=on.2,or.r_cp.r_qf.&bvm=bv.51495398,d.cGE,pv.xjs.s.en_US.M4-36_38X9A.O&um=1&ie=UTF-8&hl=en&tbm=isch&source=og&sa=N&tab=wi&ei=ShImUsXtFqr3iwLe8YHgCg#facrc=_&imgdii=_&imgrc=O-rJev3XQgdMQM%3A%3BQC-E1G4bmJozeM%3Bhttp%253A%252F%252Fshivabizint.files.wordpress.com%252F2013%252F06%252Fsample_app_v305.jpg%3Bhttp%253A%252F%252Fshivabizint.wordpress.com%252Fcategory%252Fobi-ee%252Fobiee-11g%252F%3B1109%3B542
    can anyone who has it or has a document share it or share his knowledge how to do it please ?
    thanks

    The Oracle By Example has a series of tutorials that will get you a very basic understanding.  Designing dashboards is a process that requires you to understand both Data Visualization practices and knowledge of the tool you are working with.
    Please review the following
    http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/tutorials/obiee11g-453435.html
    Oracle BI Analytics and Dashboards 11g
    Oracle BI EE (11.1.1.7): New Features - (New)
    Creating Analyses and Building Dashboards 11g  (OBI EE 11.1.1.6.2BP1)
    Creating Analyses and Dashboards 11g
    Creating and Using Action Links and Actions
    Creating and Deploying Custom Styles, Skin, and Messages in Oracle BI 11g 
    Sending Alerts in Oracle BI EE 11g by Using Oracle BI Delivers 

  • "kijiji help desk" sells paid ads that look like text links. How to block?

    I am getting ads provided by http://help.kijiji.net/ca/knowledgebase.php?article=40 that appear as highlighted links in text on various websites. This is very annoying. How do I block these?
    Currently, these ads appear to be solely for usinsuranceonline.com, but they appear multiple times per page- I mean, 20 or 30 times!
    Is there an adblocker for this?
    A sample of affected sites:
    washingtonexaminer.com
    clickorlando.com
    http://losangeles.cbslocal.com
    This is not a virus or a problem with my computer, it is a paid-for advertisement inserted into the text of the website, provided by kijiji.net.

    You can see the list of your previously installed extension in the System Details List attached to your first post.
    Note that your System Details List shows that you have a user.js file in the profile folder to initialize some prefs each time you start Firefox.
    The user.js file is only present if you or other software has created it, so normally it wouldn't be there.
    You can check its content with a plain text editor if you didn't create this file yourself.
    The user.js file is read each time you start Firefox and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved

  • Want to make site that looks like this

    Here
    I want to be able to make that blue top part that gets bigger
    or smaller depending on whose looking at it. Any help on how to do
    this?

    All you need to do is view the source code for the page and
    then deconstruct
    the page accordingly. If you do that you will find this is
    the background
    image used for the body:
    http://commissions-blueprint.com/images/bckg-grad.jpg
    and this is the CSS used to apply it:
    body {
    background-color: #efefef;
    background-image: url('images/bckg-grad.jpg');
    background-repeat: repeat-x;
    note the background-color declaration; it sets the color to
    the value of the
    color at the very bottom of the image (bckg-grad.jpg).See?
    Walt
    "RyanRigney22" <[email protected]> wrote in
    message
    news:g9u1gt$4hv$[email protected]..
    >
    http://commissions-blueprint.com/
    >
    > I want to be able to make that blue top part that gets
    bigger or smaller
    > depending on whose looking at it. Any help on how to do
    this?

  • How can I create a button that looks like this?

    Hey everyone,
    I'm trying to create a button in photoshop for a web project I'm working on and I found something similar to what I'm trying to do already being used online. I'm trying to get something similar to the bottom row of buttons in this image:
    The bottom row of buttons uses a gradient overlay effect... but there is a small darker area in the top left corner of each of those images. It looks to be exactly the same in each image... meaning I'm guessing it's not hand drawn with something like the burn tool?
    How would I go about doing something similar? What's the easiest way to reproduce the effect shown above keeping it consistant from button to button?

    One way is using layers.
    Color layer on the botton so changing colors simply change color layer.
    Place all your image effects on the overlying layers.

  • Flash navigation that looks like this...

    Has anybody developed this type of "hierarchy digaram"
    navigation as seen in
    the Overview [1]?
    <%= Clinton Gallagher
    NET csgallagher AT metromilwaukee.com
    URL
    http://clintongallagher.metromilwaukee.com/
    [1]
    http://www.cs.ucsd.edu/~wgg/Software/StarTool/

    I'm trying to figure out how you did it with shape tweaning -
    thank you so much for making that file and sending it to me!

  • My IMac has wavy lines covering the screen that look like multiple miniature calendars and I want to know how to clear them?

    My IMac has wavy lines that look like multiple quotatient marks or tiny calendars that cover the screen. How do I get rid of them?

    Does a command-shift-3 show the information in an image?  If it does, then post it here using this tip:
    https://discussions.apple.com/docs/DOC-6917

  • TS1398 I have a little symbol in the upper right side of my iPad that looks like a lock and now I cant get connected to the internet. Can anyone help me ( my granddaughter was playing on my iPad before this happened)

    I have a symbol in the upper right hand corner of my iPad that looks like a lock.  Now I am unable to connect to wifi.
    Does anyone know how to fix this?

    If you see a lock icon in the upper right corner of the screen - then the screen orientation is locked.
    Try the side switch above the volume rocker first and see if that unlocks the screen. If that doesn't do it, double tap the home button and swipe to the right and look for the lock icon all the way to the left.
    If the screen is unlocked but still will not rotate, reset the iPad.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the button
    For the WiFi issue try Settings>General>Reset>Reset Network Settings. You can also power cycle your router, Unplug it for about 30 seconds and then plug it back in.

  • The Contacts app continually adds last names that I edit out.  this happens across MacBook, iPhone, and iCloud.  I have even fully deleted the contact and reentered.  I am about to move to Android !!  From posts it looks like this is a common problem.

    The Contacts app continually adds last names that I edit out.  this happens across MacBook, iPhone, and iCloud.  I have even fully deleted the contact and reentered.  I am about to move to Android !!  From posts it looks like this is a common problem, but I've never seen an explanation or fix from Apple.  Does anyone know how to correct this?

    It is asking if you want to delete all the iCloud contacts off your Mac (not in iCloud).
    Delete them. If you keep them you will have duplicates when you turn it back on. You will have the copy you kept and another copy when they resync with iCloud

  • I have a problem with mail autofilling info email addresses. Emails sent to me the from looks like this: Holiday in the United States email address . I have no idea what this Holiday in the United States is...How can I fix/change to my name?

    I have an irritating problem with mail autofilling info in email addresses. Emails sent to me the from looks like this: Holiday in the United States <my email address>. I have no idea what this Holiday in the United States is or how it got to be there...How can I fix/change to my name?
    I fixed the To: autofilling incorrectly by deleting my email address from the Previous Recipients List, but is there a way to stop that from coming up on emails that I receive?

    Have you checked your Mac address book? If your email is saved somewhere in your address book with the name "Holidays in the United States" it might be adding the name automatically in Mac Mail.
    Alternatively, try this:
    Delete an Email Address from Auto-Complete in Mac OS X Mail
    To remove an email address from the auto-complete list in Mac OS X Mail:
    Start typing the recipient's address or name in a new message.
    Select the desired address from the auto-complete list as if you'd compose an email to them.
    Click the small down arrow in the recipient.
    Select Remove from Previous Recipients List from the menu.
    You can also search for the unwanted address directly in the previous recipients list:
    Select Window | Previous Recipients from the menu in Mac OS X Mail.
    Highlight the address you want to remove.You can highlight multiple addresses by holding down the Command key.
    Click Remove from List.
    Source: About.com

  • Create T.Code for a query that looks like Report VF05

    Hi,
    I'm facing a problem right now.. I made a Query with SQVI, then I converted it with SQ01.. It is a report that looks like VF05 but has the column EAN/UPC Code added on it.
    Now I am trying to create a T.code to run this report, using SE93.
    So, I called the T.Code ZVF05, and then I tried to Create it, but then I don't know what Start Object I should choose: I first choosed "Program and screen", I gave the field Program value "SAPMS38R" and Screen name "180" as seen in the my Query
    , but when trying to test it, I receive the message: "Incorrect program type with Submit"
    What would you suggest to make this TCode work?
    PS. Please note that I am SD functional consultant, not a ABAPer...
    Edited by: Cristiana Vasile on Oct 13, 2008 2:23 PM

    Hi,
    In SQ01, Menu-> Query->More Funcitons->Generate Program
    Once done, Get the program name:
    SQ01, Menu-> Query->More Funcitons->Display report name..
    With this report name. goto SE93 and create a report transaction with the program name = Query program name obtained above and Screen no 1000.
    Alternatively Goto SE38 and give the Query program name obtained above  and then Execute
    Regards
    Shiva

  • How do I restore my Ipad 4 from my desktop computer? My charger was broken. I bought a new one but now it won't charge. I have a BATTERY bar in the middle of the screen that is flashing RED and I have a symbol on the bottom that looks like a charger.

    How do I restore my Ipad 4 from my desktop computer? My charger was damaged so I bought a new one but it won't charge. On my Ipad, I have a BATTERY bar in the middle that is flashing RED and an icon on the bottom that looks like the end of a charger. I have tried to force into reset mode, by holding the sleep key and home button SEVERAL times but it does NOT work. I have plugged my Ipad into my desktop computer, but I do not have a screen on my desktop that is coming up. THIS HAPPENED BEFORE AFTER I DID AN UPDATE AND WAS LOCKED OUT AND I USED EITHER ICLOUD OR ITUNES TO RESTORE, NOT SURE WHICH AND I FORGOT HOW.

    Hi MrsMoosie,
    I'm sorry to hear you are having these issues with your iPad. If your iPad isn't responding or doesn't appear to be charging, you may find the information and troubleshooting steps outlined in the following articles helpful, in particular the following portion:
    If you don't see the charging screen within an hour, or you see the connect to power screen, check your connector, USB cable, and power adapter. Make sure that everything is plugged in firmly, free of debris, and not damaged. You might want to try a different USB cable or power adapter.
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    If you can’t charge your iPhone, iPad, or iPod touch - Apple Support
    Regards,
    - Brenden

  • HT3204 I updated my iphone 4 and now it won't turn on. All i get is the itunes logo and an image that looks like the charger plug.

    I UPDATED MY IPHONE 4 AND NOW IT WILL NOT TURN ON. ALL IGET IS THE ITUNES LOGO AND AN IMAGE THAT LOOKS LIKE THE CHARGER PLUG.

    plumbin wrote:
    .... ALL IGET IS THE ITUNES LOGO AND AN IMAGE THAT LOOKS LIKE THE CHARGER PLUG.
    1)  Connect to iTunes on the computer you usually Sync with and Restore
    http://support.apple.com/kb/HT1414
    2)  If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808
    Note on Recovery Mode.
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most Recent Backup...
    Restore from Backup
    http://support.apple.com/kb/ht1766
    Make sure you have the Latest Version of iTunes Installed on your computer ( v 11.1)
    iTunes free download from www.itunes.com/download

  • Hi, I have this green mark (with pointing arrow looks like a link) on some words show on my window screen when I open a web page, I wonder if it is a virus link or such. Need help how to get rid of it. Thanks

    Hi, I have this green mark (with pointing arrow looks like a link) on some words show on my window screen when I open a web page, I wonder if it is a virus link or such. Need help how to get rid of it. Here's the example:
    WING
    GAMES
    MAJORITY
    Thanks

    If the third link you posted (the link containing the word "majority") does not look like the following then you inadvertently installed adware.
    That particular page should resemble the following:
    The word "majority" in the third paragraph should not be a link and should not have the green icon associated with it.
    To learn how this may have occurred, and how to prevent it from occurring in the future, read How to install adware
    Most so-called "news" websites are nothing more than entertainment outlets that cater to prurient interests, and contain advertisements that leave the user about three clicks away from installing junk. If you decide to frequent those websites, Safari's "Reader" feature helps minimize that exposure.
    Try it:

Maybe you are looking for

  • Open order returns

    Hi All, A report is needed for open return orders that do not have a credit memo issued or a goods receipt processed against the delivery The Validation requires       Credit not issued (may be default because of billing block)  orders. can anyone he

  • Blinking file icon with question mark at startup

    my computer sort of froze so i forced restarted it (second time i've done that in its one year lifetime) and when it started back up the screen displayed a file icon with a question mark blinking on and off every two seconds. eventually the fan start

  • [SOLVED] Creating an invisible-to-the-outside network with Arch

    Hi All, I want to create an internal network to share access to a larger business network and to the outside world. Essentially, I want to create a small network that is invisible to the other machines and routers of our network, but which shares all

  • Third party case

    Dear friends I wanted to run a third-party scenario for my client. I enter the item in the order screen and change the item category to TAS. After that I am able to enter the Purchase Requisition screen. However as soon as I enter the purchasing grou

  • Problem in physical inventory

    Hello Experts, We created 80 physical inventory documents to count almost 4000 materials, but we realized that it is not possible to count all 4000 materials in one day so we decided to count it over the period in 8 phases. So, we deleted the 80 phys