Create URL that links to anchor on page

I'm putting together a long page that will have different blog posts. My intention is to publicise these posts via MailChimp or similar. My question is: is there a way to provide a link to subscribers that will take them to the specific part of this long page that will contain all the blog posts?
Or should I approach this a different way?
Thanks in advance,
Steve

Hi Aish, hi David,
For some reason I can't get the anchor to work as expected. Here's the URL: BLOG
This works by sending the user to the page, but not to the anchor on that page (the anchor is directly above the 7 thumbnails of business cards).
Any clues as to what I might be doing wrong?
Thanks in advance,
Steve

Similar Messages

  • DW5 - How to list all pages that link to a specific page?

    Hi all, I'm using DW5 and need to completely remove a specific page. How can I get DW to check through the whole site and make a list of all other pages that link directly to the page I want to remove?
    I'm sure it must be simple, but can't seem to get the result I need. Can someone spare a few minutes to spell it out for me please?

    I would do a Find on the page name...source code...in the entire local site...and be given a list of pages that include that page name. Then you can go into the Results window, where they are listed, and by double-clicking go directly to each reference.
    You may also save a copy of the report in XML... (the save icon is a small floppy disk image on the left border of the Results Panel.
    Beth

  • I have a main fillable form.  From this main form the user may need additional forms.  I want to create checkboxes that link to these additional forms.  This part I believe I know how to do (Properties/Actions/Open a File).  What I want to add is a javasc

    I have a main fillable form.  From this main form the user may need additional forms.  I want to create checkboxes that link to these additional forms.  This part I believe I know how to do (Properties/Actions/Open a File).  What I want to add is a javascript to the checkbox that when the new file (or form) opens some of the data (the repetitive data like name, date, etc.) from the main form is placed into the form opened where the same form fields exist.  Is this possible?

    Yes, but then it all has to be done using a script. You can't use the built-in Open A File command.

  • How can I create a working link from the home page to other pages?

    Using iWeb, I created links on the Home page directed to other pages within my web site. The links are located in the main body of the Home page (on the right side) and are not included in the Navigation Menu. The links function correctly when I test them in iWeb, however, the links do not function at all after publishing to the internet.
    Within the inspector, I have chosen, Link To: "One of my pages" and the appropriate page is selected.
    The links within the gray rectangles do not function. The same links below the gray rectangle links go to a "Page Not Found" page.
    See the home page at http://www.daleenstrom.com
    How can I make these links function correctly?

    Welcome to the Apple Discussions. I've found that using the "One of my pages" often doesn't work. Since you've published the site go to each page, copy its URL and use it for the hyperlink. I've found that to me more reliable.
    Are those two links inside the shapes or just on top? Both of those items are one large image file. If you inserted the link in the shape be sure you've selected the text (might take a few clicks to get inside and select it) to use for the hyperlink. Also make sure there are no other objects overlapping each of the shaped with the hyperlinked text.
    Also it appears that the entire text box is an image. Turn on iWeb's preferences to display the text image indicator:
    Click to view full size
    and then you'll see the following on any object that will be converted to text once published:
    Click to view full size
    The two links below work for me. Be sure to clear your browsers cache (CommandOptionE for Safari) and reload the page.
    OT

  • How can I put a footer that links to the first page of a pdf from the other pages?

    I am trying to create a pdf that has the option "Return to Table of Contents" at the bottom of each page from 2 to 23.  I know how to add a footer, and I know how to add a link, but is there a way to put a link as a footer?  I don't want to have to go in and create 22 links for each file. 

    Then duplicate that button to pages 3-23.
    To do that effectively go to Form Edit mode, right-click the button and select Duplicate Across Pages.

  • Creating URLs that open a new tab or browser window?

    Hello out there...
    I am creating some podcasts via Garage Band and iWeb for my grade 9 class. I have embedded some URLs in the podcast however when one 'clicks' the links the iWeb page is closed and the user is taken to the new page.
    I would like the iWeb page with the podcast to remain open and a new page or tab open up to display the link.
    Is it possible to do this?
    Thanks,
    B!

    Hi,
         Similar question has been asked in the forum, hope it will help:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9db08c4a-b53c-419a-84f8-001c194d1311/how-to-open-sharepoint-document-library-pdf-file-in-new-window?forum=sharepointadminlegacy
    Take a look to the articles given in below link too.
    http://office.microsoft.com/en-in/sharepoint-server-help/change-how-to-open-a-document-in-a-library-with-one-click-HA101729873.aspx
    http://www.benramey.com/2011/04/25/opening-all-sharepoint-2010-documents-in-a-new-window/
    Regards,
    MS

  • Create HTML that links 100 PDF files in a folder

    I would like to publish my wife's recipes on our website, hoping she can then have access from the iPhone. I have about a 100 and really don't want to use iWeb to create 100 hyperlinks to a file, especially since she is continuously adding recipes.
    Does anyone have a hint that could help generate such a page?

    Does anyone have a hint that could help generate such a page?
    Try AppleScript, it's easier than you think. Here is a short script:
    -- start script
    on run
        tell application "Finder"
            -- ask for folder contains PDFs
            set recipesFolder to choose folder with prompt "Please select the folder that contains recipe PDFs"
            -- get all files name
            set recipeFileNames to name of every file in recipesFolder whose name extension is "pdf"
            -- convert folder path to POSIX so can be used with Unix command
            set posixFolderPath to POSIX path of recipesFolder
        end tell
        set DOCTYPE to "<?xml version=\"1.0\" encoding=\"UTF-8\"?><!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><title>My Recipes</title></head><body>"
        set closeTags to "</body></html>"
        -- write DOCTYPE
        do shell script "/bin/echo " & quoted form of DOCTYPE & " > " & quoted form of (posixFolderPath & "My Recipes.html")
        -- write page title
        do shell script "/bin/echo " & quoted form of "<br/>My Recipes<br/><br/>" & " >> " & quoted form of (posixFolderPath & "My Recipes.html")
        repeat with recipeFileName in recipeFileNames
            -- write recipes entries
            do shell script "/bin/echo '<li><a href=\"" & recipeFileName & "\">" & recipeFileName & "</a><br/>'" & " >> " & quoted form of (posixFolderPath & "My Recipes.html")
        end repeat
        -- write close tags
        do shell script "/bin/echo " & quoted form of closeTags & " >> " & quoted form of (posixFolderPath & "My Recipes.html")
    end run
    -- end script
    Launch Script Editor, it can be found in /Application/AppleScript/ folder, copy& paste the script, I added comments above each line. You can run the script from Script Editor or save it as an application (File menu --> Save as..). Run the script, it'll do the following:
    1) prompt you to locate the folder which contains the PDFs
    2) make 'My Recipes.html' file in the same folder, that way you can upload the whole folder to you host.
    Be sure you *do not* have any file with the name 'My Recipes.html'.
    *If you're unsure of anything post back or make back up your important stuff (aka everthing you home folder).*
    Now, the script generates a very raw page with a list of PDF files and links to them.
    But potentially, AppleScript can generate html page with different catagories... such as: vegan, veggies or carnivore dishes... or French, Thai or Indonesian dishes... etc, etc... great for searching!
    But, you need to add those key words in the PDF file's Spotlight Comments (in Finder select an item, then hit command+i, you'll see comments field at the top on info pane).
    Spotlight Comments is meta data for Finder to find things (data base indexing).
    Lastly, you can automate all these by using AppleScript's Folder Action

  • Creating index that points back to main page

    I have a personal web site to share photos of the baby. During the last four months I have found myself making adjustments to how I want to display. The first two months it was all pictures on one page. That wasn't good. I decided to have albums for each month. So there were multiple albums on the main page each linking to a different month. That worked. However I changed it up and decided that I want the main address to always point to the most recent album. I'm not a designer so I will try best to describe how I configured this. In iWeb in the tree pane, I have the main site listed and under each is the album/page for every month. I just drag the most recent album to the top and when you put in the default web address it takes you to that page first.
    Example:
    web.me.com/username/First_Last/ will take you to web.me.com/username/FirstLast/September2010.html#grid
    What happens is that if someone were to go the site with the main address and then bookmark or add to favorites, they are adding "web.me.com/username/FirstLast/September2010....." when really I would prefer that they add "web.me.com/username/First_Last" only. Is there a way to have this happen behind the scenes? I am dealing with a lot of family members who don't like change and get frustrated when the page doesn't open the way they expect.
    Also another problem: in the past I had the photos in a separate directory.
    web.me.com/username/First_Last/Photos
    That was the address I would give out before. Can I make a holder with that address that would automatically re-direct to "web.me.com/username/First_Last" instead?
    JF

    Can I make a holder with that address that would automatically re-direct to "web.me.com/username/First_Last" instead?
    You can redirect visitors to a web page to another web page by adding the following code to an HTML snippet on that page:
    <script type="text/javascript">
    parent.window.location = "URL TO PAGE ON SITE YOU WANT TO REDIRECT TO"; </script>
    Thanks to Cyclosaurus for this code
    The visitor will be redirected immediately to the other page. It will be quicker if you can delete all items on that page except for the HTML snippet.
    It would't be automatic but you could use the redirect snippet to send visitors to the latest album. You wouldn't have to move albums around or anything like that. Just leave them in chronological order in the site.
    Make a first blank page and use the redirect snippet to redirect visitors to the new album. You would have to publish the site with the new album first so you could get the full URL to the page or figure it out from the name, i.e. http://web.me.com/MobileMeAccount_Name/Site_Name/PageName and use it in the snippet.
    You can leave that first page out of the navbar so that visitors won't accidentally go to that page and end up back at the new album.
    The contents page in each of my demo sites is a redirtect to a Contents page for all the sites. That way I can link the 4 sites together and only have to update one contents page. Click on the following link and watch the URL window change from the Demo site to the Contents site: Demo 1. Watch close as it can go by pretty fast.
    OT

  • How to track the URL that comes from a referred page using XSQL Custom Handler

    Hi,
    I have a cold fusion page(say cf.cfm) that sent a request to xsql page(say test.xsql) and then xsql page displays results. I want to capure the URL of cf.cfm page and then after checking its host name and path name for correctness then want to display the test.xsql results.
    Please let me know how can I capture URL of the refered page(cf.cfm) in the Custom Handler and then I want to extract host-name and path-name out of that url and on the basis of their values I want to display the result of XSQL page(test.xsql).
    Regards
    a2012

    req.getHeader("Referer") will return the referring url

  • Creating an email link within a Muse page?

    I want to create an standalone (not within a contact form) email link in Muse. Do I simply highlight an email address within a text box and apply a hyperlink witht the corresponding email address ([email protected])? Or does it need to be a spearate element/text box to do so?
    Thanks, in advance.

    Hello Stephen,
    You can just highlight the email address and put the email address in the hyperlink field. It will hyperlink the email address and when user will click on it, it will automatically open their default e-mail client with an email having the mentioned email id in the "To" filed.
    Regards,
    Sachin

  • Find all pages that link to x

    Hello,
    I'm using Dreamweaver to maintain our Intranet. There have
    been
    numerous times that I want to find all pages on our Intranet
    that link
    to a particular page. (Say I'm moving content from one folder
    to
    another.) Is there an easy way to accomplish this in
    Dreamweaver?
    Right now I do a global find for links that use the filename.
    it's not
    perfect, though, as some links use relative linking and some
    use
    site-root linking.
    Any 3rd party packages that do it, if Dreamweaver won't?
    Thanks,
    -Ben

    Me three !
    Always best to keep a backup of the site - if it's the first
    time you try
    this method :)
    Nadia
    Adobe® Community Expert : Dreamweaver
    Skype: nadiaperre
    Tutorials |SEO |Templates
    http://www.DreamweaverResources.com
    http://www.csstemplates.com.au
    http://www.adobe.com/devnet/dreamweaver/css.html
    CSS Tutorials for Dreamweaver
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:efj4te$k5v$[email protected]..
    : Yes - I use that method too.
    : Murray --- ICQ 71997575
    : Adobe Community Expert
    : (If you *MUST* email me, don't LAUGH when you do so!)
    : ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    : ==================
    : "James Shook" <jshook@dont_mail.com> wrote in message
    : news:efj4n7$jad$[email protected]..
    : > Here's a rather reckless method. Suppose you want to
    know which pages
    link
    : > to "mypage.html." Select "mypage.html" in DW's site
    manager window and
    hit
    : > delete. DW will put up a box asking if you are sure
    you want to delete
    : > that file, because these pages all link to it, and it
    will show you a
    list
    : > of those pages. Cancel out.
    : >
    : > As far as I know, there is no way to capture the list
    of linking files
    : > from the warning dialog, although I have never tried.
    You might be able
    to
    : > drag-select them and paste them into a text file.
    : >
    : > Not for the faint of heart. I am not responsible if
    this destroys your
    : > site. You didn't read this.
    : >
    : > --
    : > James M. Shook
    : >
    http://www.jshook.com

  • How can create webi content link in BI Workspace?

    Dear Expert,
    I'm facing problem with creating 2 webis content link in BI Workspace.
    I tried to follow this Creating a BI Workspace in BI4 Feature Pack 3.
    But I can not find "PARAMETER_OUT".
    Please help me to how can I create "PARAMETER_OUT" to connect with "PARAMETER_IN".
    Best regards,
    Chenna Yon

    I have created a "Scope Resource Filter"
    Knowledge Management --> Content-Management --> Global Services --> Resource Filters --> Scope Resource Filter
    "URL (Content Link) Mode (Documents/Web-Pages Only): *" <<exclude>>
    I have created a new crawler which uses this filter and re-indexed my content, but without success.
    I guess this is the right way, but It seems that I have forgot something...
    I would appreciate any help
    Thank you and best regards
    Khaled el Taki / Cologne, Germany

  • How to create buttons that control left and right scroll?

    I would like to know if there is a way to create two buttons, each on the left and right hand sides of the screen, that would control the horizontal (x-axis) scroll of my website.  I've built two image buttons that link to anchors located on the left and righthand edges of the page, but this does not achieve the funtionality I'm looking for.  I would like each button to scroll incrementally every time it is pressed. 
    Is this possible in Muse?

    There are no facing pages in Pages 5.
    Peter

  • Howto create a dynamic link with current domain

    We need to create a dynamic link on a html page in the portal.
    The link should contain a dynamic part containing the domain where the CLIENT is in. It should look like this : http://mytool.windowsdomain.corp/tool where "windowsdomain.corp" is dynamic. Where could we get this information from?
    Thanks!
    Matthias

    Hi Matthias,
    you could paste something like this in a Custom JSP Component:
    <script type="text/javascript">
         function getServerURL() {
              return top.document.location.protocol+"//"+top.document.location.host;
         function redirect(uri) {
              try {     
                   top.location.href=uri;
              } catch (e) {
                //unfortunately this is not triggered in IE - only in mozilla
                   alert("No valid Redirection-URL could be generated. Please contact your Administrator.");
        redirect(getServerURL()+'/tool'+top.document.location.search);
    </script>
    Best Reagrds, Thomas

  • Help Page link redirecting to Blank page

    Our developer team performed some customization and created a help link on the home page. The problem we are now facing is that this link is redirecting to a blank page.
    Kindly provide any suggestions.

    Hi,
    Share the code or steps u performed for achieving the Help.
    Regards,
    Gyan

Maybe you are looking for

  • High CPU usage - Rapid Battery Drain - Running HOT

    Looking for help.. PLEASE! Z10 - Model STL100-3 Software release 10.2.1.2179 Symptoms; Occasionally, and for no apparent reason, I notice my Z10 getting hot in my pocket. I run the device monitor App and see a very high CPU usage, which consequently

  • How to change data source name and context root during deployment

    Hi, Env: WLS 10.1.3 JDev 11.1.1.6 Hudson I need to deploy two instances of my ADF application on the same development enviroment. We are using Hudson to deploy. My question is how to change data source name and application context root before second

  • Trying to install Elements 13; Adobe Sign-In Locks Up

    I confirmed my Adobe Userid is valid by logging in directly to the Adobe web site; however -- When running the Adobe Photoshop Elements 13 Set-up.exe file, I come to a screen where it asks for my Adobe ID and password.  I enter this information, and

  • IPhoto is totally messing up the color of photos!

    the issue: - I import from my camera to iPhoto - drag photo to the desktop - open and edit photo in Photoshop (and save it) - drag the new version into iPhoto While in Photoshop it looks fine and it also looks fine when I upload it to the web, but wh

  • ITunes version 11.2.2.3

    My PC has 11.2.2.3. But iTunes download page shows newest as 11.2.2. I can only find 11.2.2.3 on other download sites not Apple ITunes. Is 11.2.2.3 a true iTunes version?