How do you add a Facebook, Twitter and Yelp links?

How do you add links for Facebook, Twitter and Yelp onto a website created by using iWeb? I'm using a hosting service to get my site on the web.

Hi 80smetalhead. My first help post, so hope it helps.
First off choose wether you are using a icon or text.
For a few free Facebook/twitter/in icons try: http://www.jordankennedy.com/jk/Free_Stuff.html
Ether way the process is the same. Select the Text/iCon. Then go to "Inspector" in the bottom right hand. (Blue circle with a "i" in it)
Then select the sixth iCon across. (blue circle with arrow)
Click "Enable as Hyperlink"
Then under that Link to: External Page <--this should be selected.. If not select it.
Under that will be a box with a link already in there. usually a apple link. change that to your Facebook/Twitter address.
And that hopefully should do the trick

Similar Messages

  • How do you add a mobile number and a home number to a contact on a 4S

    How do you add a mobile number and a home number to a contact on an iPhone4S?

    First add the mobile number. Once you've done that there should be another field that shows 'iPhone". Tap on 'iPhone' and change it to 'Home' then input the home number.

  • How do you add a stock tracker and weather to the notification center?

    How do you add a stock tracker and weather to the notification center?

    You can not. This is only a feature of iOS. It would only be supported via the dashboard on OS X

  • How do you add a Facebook like button to an iBooks Author page?

    How can I add a Facebook Like Button to an iBooks Author page?
    I've got my book ready to go.
    I've got a facebook account to promote it.
    I just want to add a "Like" button on the iBooks page.
    regards
    iRevDr Bill Wall

    Hi KT,
    That was helpful, but I'm still having problems.
    I've plonked a Facebook logo on the page.
    BUT I can't seem to give it a hyperlink to my Facebook page.
    When I select the logo and then use the tool bars or the box thingy. It won't allow me to paste in the URL.
    It looks a bit ugly having a Facebook logo and the text of the URL beside it.
    Is there a way of making the Facebook logo have a hyperlink to its URL so you just click on the logo and it takes you to the facebook page.
    regards
    iRevDr

  • How do you add multiple facebook accounts to iPhoto

    I'm trying to add more then one account and I don't see how you can.

    Is this to iPhoto on your Mac?  If so maybe this topic will help :how do you sync more than one facebook account to iphoto?, how do you sync more than one facebook account to iphoto?
    OT

  • How do you add a new buddy and have it save them?

    when i add a new buddy the person shows up under offline but i know that the person is online because she is texting me and then 2 minutes later the person dissapers and ichat doesn't work with the person. the person who i am trying to add to my list is doing the same thing but it's still not working, why?

    Hi
    It would help to know what type of Buddy they are (AIM, Jabber or Yahoo) ?
    It would also help to know which version of iChat you are using (Some (most) versions don't do Yahoo)?
    Then we need to know what Screen Name or ID you have ?
    This will tell us what sort of Buddy List you are trying to Add the person to.
    AIM Buddies (Included @mac.com and @me.com names) can be set to Invisible in some version of iChat in in some other apps if they are not using iChat.
    Also look in iChat menu > Preferences > Accounts > Security tab  for your AIM accounts
    There are variation as to who is allowed and who isn't allow to See you as On line.
    This can be complicated by the settings at the Buddies end.
    Jabber Buddy lists
    When you add a Buddy here it sends an "Authorisation Request" fro them to be a Buddy.
    They have to either Agree  or Decline.
    iChat sends this Request just once and if th Buddy does ot answer it they appear in the Off Line Section of your Buddy list (although they can text you and appear in Dark Text suggesting they are On line)
    Jabber (Includes Google Talk and Facebook) cannot be set to Invisible.
    It is best that you add the Buddy at an agreed time or use a third party app such as Psi that keeps sending Authorisation Requests until the person Accepts or Declines.
    7:40 PM      Thursday; August 9, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can you add your own print and export buttons to the CR viewer toolbar?

    I posted a previous question that was asking how to get around the Information Bar in IE7 when you export and print.  Unfortunately the CR viewer file download code gets blocked by IE7 because the buttons don't directly download the file.  However, I have been able to get a regular button that calls the following code and streams the file to the client and IE7 does not block it. 
    Sub PrintPDF(sender As Object, e As System.EventArgs)
         Dim crReportDocument as ReportDocument
         Dim crExportOptions as ExportOptions
         Dim crDiskFileDestinationOptions as DiskFileDestinationOptions
         Dim Fname as string
         CrReportDocument = New ReportDocument()
         CrReportDocument.Load(Server.MapPath("estactionlist.rpt"))
         Fname = Server.MapPath("./") & Session.SessionID.ToString & ".pdf"
         CrDiskFileDestinationOptions = New DiskFileDestinationOptions()
         CrDiskFileDestinationOptions.DiskFileName = FName
         CrExportOptions = crReportDocument.ExportOptions
         With crExportOptions
              .DestinationOptions = CrDiskFileDestinationOptions
              .ExportDestinationType = ExportDestinationType.DiskFile
              .ExportFormatType = ExportFormatType.PortableDocFormat
         End With
         CrReportDocument.Export()
         Response.ClearContent()
         Response.ClearHeaders()
                    Response.AddHeader("content-disposition", "attachment;filename=test.pdf")
                    Response.ContentType = "application/pdf"
                    Response.Charset = ""
                    Response.WriteFile(Fname)
                    Response.Flush()
         Response.Close()
         System.IO.File.Delete(Fname)
    End Sub
    So here are my questions?
    1. Is it possible to add a custom print control/icon to the CR viewer toolbar?
    2. If one is not possible, then is it possible to override the CR viewer print and export buttons with your own subroutines like the one above?
    I just want my page to look nice and hate to have print and export buttons outside of my CR viewer. 
    Thanks,
    Kevin

    It might be possible to replace the buttons in a windows app since you can retrieve the toolbar as a toolbar object in the winform viewer  ( ToolStrip toolBar = (ToolStrip) crystalReportViewer1.Controls[3]; )  however with a web app, it's a lot more difficult.
    The problem is that that you need to parse the Request string to try and figure out if the print / export button was clicked.  The code below makes the print button disappear if you click it, so you should be able to modify it to call your custom printing / exporting code instead  (You have to do this check in a postback)
            Dim I As Integer = 0
            If Request.Form.AllKeys.Length > 0 Then
                For I = 0 To Request.Form.AllKeys.Length - 1
                    Response.Write(Request.Form.Keys(I).ToString & "<BR>")
                    If Request.Form.Keys(I).ToString = "CrystalReportViewer2:_ctl2:_ctl2.x" Then
                        CrystalReportViewer2.HasPrintButton = False
                    End If
                Next
           End If
    Shawn

  • Query: How do you add a Total field and a Calculation

    Hi Experts,
    I have writen the following query with the Query Generator. I have 2 questions:
    I need to display the Total of column T2.[OpenSum]. How do I write this in the Query?
    I need the T2.[OpenSum] to be multiplied with T3.[Commission] - on the line and put into a newly created column and then have a total at the bottom. How do I do this?
    SELECT T0.[DocNum] AS 'Incoming Payment', T0.[DocDate] AS ' Incoming Payment Date', T0.[CardCode], T0.[CardName],  T3.[SlpName], T3.[Commission], T1.[DocNum] AS 'Invoice Number', T2.[OpenSum] AS 'Invoice Line Amounts'
    FROM ORCT T0  INNER JOIN OINV T1 ON T0.DocEntry = T1.ReceiptNum INNER JOIN INV1 T2 ON T1.DocEntry = T2.DocEntry INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE T0.[DocDate] >=[%0] AND  T0.[DocDate] <=[%1] AND  T3.[SlpName] =[%2]
    ORDER BY T1.[DocNum]
    Any help would be greatly appreciated!
    Thanks!
    Marli

    Hi Marli:
    Try this one for a new column:
    SELECT T0.[DocNum] AS 'Incoming Payment', T0.[DocDate] AS ' Incoming Payment Date', T0.[CardCode], T0.[CardName],  T3.[SlpName], T3.[Commission], T1.[DocNum] AS 'Invoice Number', T2.[OpenSum] AS 'Invoice Line Amounts', T2.[OpenSum] * T3.[Commission] AS 'Commission Amount'
    FROM ORCT T0  INNER JOIN OINV T1 ON T0.DocEntry = T1.ReceiptNum INNER JOIN INV1 T2 ON T1.DocEntry = T2.DocEntry INNER JOIN OSLP T3 ON T1.SlpCode = T3.SlpCode
    WHERE T0.[DocDate] >=[%0] AND  T0.[DocDate] <=[%1] AND  T3.[SlpName] =[%2]
    ORDER BY T1.[DocNum]
    As for the total, if you only want to have a grand total, just CTRL + click column head.
    Thanks,
    Gordon

  • How do you add the absolute time and date to a spreadshee​t file?

    I am creating a spreadsheet file, and I want to write the absolute time and date to its first column. Does anybody know how to do this?
    Thank You,

    BrianL answer is still valid !
    Attached is an example file with an express vi configured to use the absolute time generated from a get time/date node.
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Save with absolute time.vi ‏135 KB

  • How do you add a Facebook "like" button to a Fluid Grid layout?

    There are two snippets of javascript from Facebook you're supposed to paste into two different places. Something about the Dreamweaver fluid grid makes it work differently, though, and I can't figure out what it is. I can't figure out what to do with the snippets of code to make the Facebook box/button show up in the browser window.

    Here's what the FB page says to paste just after the body tag:
    <script>
      window.fbAsyncInit = function() {
      FB.init({
      appId  : '196637453839945',
      xfbml  : true,
      version  : 'v2.1'
      (function(d, s, id){
       var js, fjs = d.getElementsByTagName(s)[0];
       if (d.getElementById(id)) {return;}
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/sdk.js";
      fjs.parentNode.insertBefore(js, fjs);
       }(document, 'script', 'facebook-jssdk'));
    </script>
    Here's what it says to paste into the spot where you want it to appear:
    <div
      class="fb-like"
      data-share="true"
      data-width="450"
      data-show-faces="true">
    </div>
    Seems simple enough, but it hasn't appeared on the page in a browser.

  • How Do You Add an Autofill Username and Password

    Is there a way to manually add a username and password to the Autofill function?
    Most of the secure sites I navigate to have asked if I want to have Safari remember this information, and after that it appears. Autofill "user names and passwords" box is checked, and those sites appear on the list when I select "edit."
    One or two sites, however, do not result in the do-you-want-to-save dialog. Anybody know why? I there a way to manually add it to the list? I can't find it if there is.

    One or two sites, however, do not result in the do-you-want-to-save dialog. Anybody know why? I there a way to manually add it to the list? I can't find it if there is.
    A website can specify whether a browser should autofill a form field or not. For reasons of security, some websites (typically banks) turn off autofilling on purpose.

  • Delete Facebook, Twitter, and other links on safari

    Guys & Girls,
    Everywhere I go on Safari I get the very annoying group of icons to link with the social networks listed in the subject above. They seem to float and follow me where ever I go.
    How can I delete them?
    Thanks.
    Regards, Phil
    Macintosh b'gosh

    Andy,
    Nope, didn't help. They're still there. But thanks anyway.
    Regards, Phil
    Macintosh b'gosh

  • How do you add Facebook in in mail contacts and calendars

    How do you add Facebook in in mail contacts and calendars

    Facebook integration isn't there yet! This integreation is coming during the fall as it's stated on the features page http://www.apple.com/osx/whats-new/ !

  • How do you add and remove links to websites in folders on Safari?

    How do you add and remove links to websites in folders on Safari?

    For clarification, works like a bookmark of website only it is listed in toolbar with "Most Visited", "Latest Headlines", "News", and "Popular".  I have done it before but can't find it for the life of me.
    Thanks!

  • Just uploaded iso7 , . . .hate it!  Can you change background colours?  How do you add a new item/activity to the schedule? In notes the font has changed, can I change it back and the link colour is now yellow instead of blue, can I change it?  Thanks

    Just uploaded iso7 , . . .hate it!  Can you change background colours?  How do you add a new item/activity to the schedule? In notes the font has changed, can I change it back and the link colour is now yellow instead of blue, can I change it?  Yellow on white is harder to read. Thanks

    Another question. How do you bookmark something.  It was so easy before, why did they change it?  Can I uninstall it?

Maybe you are looking for

  • Installation problem with HP Officejet Pro Plus 8600 with Windows 8.1

    My system recently updated to Windows 8.1 and my HP Officejet Pro Plus 8600 will no longer function with my computers (Dell desktop, Hp laptop). It shows up in control panel, but says the driver is unavailable. I have tried to download the compatible

  • Send async message

    Hi all, in my application the user can start a long running job (one or more SQL query) which is executed in a separated thread. I'd like to notify to the user the end of the job (if he is still logged in), but I don't know how. CAn somebody help me

  • How to open a file located at server using JSP

    hi, i would like to open a file located at server as it is. I mean to say, if it a MS Word file, i wanna open it in MS Word, if it an Excel file, i wanna open it in Excel. i know the location (path) of the file. Can someone help me please. Thanx

  • OT: New Audio Editor: Fission

    I'm happy with Peak, but I must admit there are a couple of interesting features in this new editor. Lossless Audio Edits - Edit With No Quality Loss With Fission, you can edit MP3 and AAC encoded files without re-encoding them. This means you can tr

  • Installing a new Time Machine?

    I Have had to return a time machine as it was faulty. I have a replacement but before I install it, do I have to uninstall anything on my MacBook Pro to do with the old TM?