How to creeate a site and blog

This is my site
www.iamalbert.com
So far I have created it with iWeb but I no longer have
access to a mac operating system so I acquired Dreamweaver as a
substitute. I'm willing to recreate my entire site if I have to but
is there a way I can do something similar to this using
dreamweaver?

>> is there a way I can do something similar to this
using dreamweaver?
Sure, but there are 2 prerequisites:
1. Learn HTML & CSS before even touching DW. (Otherwise
you will experience
frustration).
2. Abandon the use of absolutely-positioned divs as a primary
page layout
device. Your site has a dozen or more. Read this for
starters:
http://apptools.com/examples/pagelayout101.php
You can search this forum/group for more info on either of
these topics:
http://groups.google.com/advanced_search?q=+group:macromedia.dreamweaver
Walt
"nucklearknight" <[email protected]> wrote
in message
news:gks7a3$8pi$[email protected]..
> This is my site
> www.iamalbert.com
> So far I have created it with iWeb but I no longer have
access to a mac
> operating system so I acquired Dreamweaver as a
substitute. I'm willing to
> recreate my entire site if I have to but is there a way
I can do something
> similar to this using dreamweaver?
>

Similar Messages

  • How to migrate sites and blogs made with iWeb 1.1.2 into MobileMe?

    How to republish or migrate sites and blogs made with iWeb 1.1.2 into MobileMe?
    I can not find instructions for that, and when trying to publish into .Mac, I consistently get an error message. The sites would look better as they are, but ...

    tortuga wrote:
    How to republish or migrate sites and blogs made with iWeb 1.1.2 into MobileMe?
    If you're referring to last year's transition from .Mac to MobileMe, your iWeb websites are still available at the same URLs and have also been given a new URL at (www.me.com). For example, (web.mac.com/emily_parker/) will work as will (web.me.com/emily_parker)
    tortuga wrote:
    I can not find instructions for that...
    I don't think there's anything special you need to do, but anyway, this Apple doc may be of interest:
    _dotMac to MobileMe transition FAQ_
    tortuga wrote:
    ...and when trying to publish into .Mac, I consistently get an error message.
    What's the exact text of the error msg? This Apple doc may help:
    MobileMe: Troubleshooting iWeb publishing issues
    Also, MobileMe live chat support is now 24/7 — see this announcement.
    By the way, your Public Profile indicates you're running Mac OS X (10.5.4) — if that's true, you should upgrade to 10.5.8 via  menu > Software Update...

  • Sites and Blogs created in iWeb...

    Does anyone know of a link to view sites and blogs created solely by iWeb? I'm curious to see others' creations.

    Here is a discussion where people post their sites created with iWeb '08
    http://discussions.apple.com/thread.jspa?threadID=1094805&tstart=100
    and here a webpage where you can find links to iWeb created pages
    http://www.iwebusersites.com/

  • How do I migrate sites and settings from CS6 to CC?

    How do I migrate sites and settings from CS6 to CC?
    Now goddam way I am going to rebuild 13 websites just to use CC

    Well. With Dreamweaver CC, you could use the Sync settings feature to transfer workspaces from one CC machine to the other.
    But with CS6 workspaces being transferred to CC there is a not so intuitive way to do it.
    Backup/Rename the CC workspace folder [resent at C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\configuration\workspace to anything you like.
    Copy the workspace folder from C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS6\configuration\workspace to C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC\configuration\workspace
    Now you should have your CS6 workspaces in CC.

  • Hello, i would like to know how to make horizontal sites and it moves with the scroll

    Hello, i would like to know how to make horizontal sites and it moves with the scroll

    Hi
    You can refer to these videos :
    http://www.lynda.com/Muse-tutorials/basics-horizontal-scrolling-websites/108131/115685-4.h tml
    https://www.youtube.com/watch?v=gZI_K1TXqOM
    Thanks,
    Sanjit

  • How to insert landing site and impression code into swf files

    Hi guys!
    i got problems.
    Actually, i dont have  knowleage about tracking and clicks.
    I want to find out how to use it and use it in swf files.
    i want to insert landing site and impression code into swf files but i dont know how to do it.
    i want insert two link below into swf files.
    Impression:
         http://impgb.tradedoubler.com/imp?type(inv)g(xxxxxxx)a(xxxxxxx)
    Click:
         http://clk.tradedoubler.com/click?p=xxxxxx&a=xxxxxxx&g=xxxxxxx
    Can you show me how to do that?
    Thanks for your helps.

    You would need to creat a invisible button or movieclip on a new layer on top and have it fire a external javasctipt function you create in the HTML header that will then call those URLs .

  • Using Google Analytics with Muse site and /blog

    Hi there,
    I have a simple website that I have put together using Muse: movingpictureTV.com
    For the site I have added analytics code to pick up figures etc.
    The sites Wordpress blog is found at movingpictureTV.com/blog
    Does this mean I need separate tracking code to pick up data for the blog or will the code used on the main site URL pick up the blog traffic too?
    Many thanks for your help,
    Mark

    Hi Mark,
    Usually, when google spiders visit your site, it index all the hard coded links on the home page. However, you can add analytics code to every page. It will expedite the indexing of the pages.
    Regards,
    Aish

  • How to create a site and add security groups through code: scripts, csom, ... ?

    Hi,
    I'm new to CSOM and are looking for a way to create sites in SharePoint Office365 and especially add user to it with a specific role eg. 'visitor' or 'owner'.
    I use this code to add sites from a csv file, so far so good.
    But now I want to add security groups based on the csv file and assign a role. The security groups allready exists.
    and also how to add a user with a 'owner' role for some sites.
    That would make my life easier :-)
    so thank you in advance!
    # load assemblies
    #[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client")
    #[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client.Runtime")
    Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"
    Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"
    # site collection
    $siteUrl = “https://mysharepoint.com”
    # admin
    $username = "[email protected]"
    $password = Read-Host -Prompt "Enter password" -AsSecureString
    # get clientcontext as object
    $ctx = New-Object Microsoft.SharePoint.Client.ClientContext($siteUrl)
    # assign credentials to clientcontext object
    $credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($username, $password)
    $ctx.Credentials = $credentials
    # create site from template 'teamsite' => STS#0
    $data = Import-Csv "c:\tools\CSOM\vakwerking_test.csv"
    foreach ($row in $data) {
    $webCreationInformation = New-Object Microsoft.SharePoint.Client.WebCreationInformation
    $webCreationInformation.Url = $row.vakwerkingurl
    $webCreationInformation.Title = $row.vakwerkingnaam
    $webCreationInformation.WebTemplate = "STS#0"
    $webCreationInformation.UseSamePermissionsAsParentSite = $false
    $newWeb = $ctx.Web.Webs.Add($webCreationInformation)
    Write-Host "Title" $newWeb.Title
    #send to sharepoint
    $ctx.Load($newWeb)
    $ctx.ExecuteQuery()

    Hi,
    The command above about creating a group only works for the root site of the site collection, because the scope of the user group is site collection level, these groups
    can be used in all the sites in this site collection.
    With the existing groups in the root site, we can add users into them and grant specific permissions of a specific sub site to these groups.
    Here is a demo about how to assign permission to a group using Client Object Model(though in C#) for your reference:
    http://www.c-sharpcorner.com/UploadFile/54db21/set-permission-to-group-in-sharepoint-2010-programmatically/
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • How to get my sites and settings back

    My hard drive crashed and I reinstalled windows xp and then Dreamweaver CS4.
    I now have two problems...
    1) I copy all of my dreamweaver application settings to the dreamweaver cs4 en_US/Configuration folder but every time I do this and then restart Dreamweaver a new configuration folder is created instead called configuration-1, etc. and none of my settings are back.
    2) How can I get my site definitions off of the old drive. I still have access to the drive and all of the files on it but I can't boot that drive. Someone said that the site definitions were stored in the registry. If so, that's very stupid but anywaqy, how can I get them from the old registry file into the new installation?
    Thanks for your help.

    This post should help:
    http://forums.adobe.com/thread/439283

  • HT201412 My iPad 1 crashes every time I open a game app, and for some sites and blogs such as Facebook or Awesomer. What's wrong with it?

    Hi, my iPad 1 can barely open a game for more than a couple of minutes without crashing and going back to the home screen.
    I've had it for about 2 years but it has been happening for about a year, and now it's annoying me more than ever.
    It happens on some sites like facebook and sites with lots of videos like Awesomer or Vimeo.
    I though that when I update the os to iOS 5, that would fix it and while it did get better for a while, it just got worse again.
    I even reset the machine, and restored it from iTunes but nothing's made any improvement.
    Could anybody help me?

    1. Double-click the Home button to close all Inactive Apps in Task Bar
    2. Hold the Apps in Task Bar down for a second or two until you see the minus sign
    3. Tap the minus sign to close Apps
    4. Tap center of screen to return to Home Screen
    5. Reset iPad. Hold the Sleep and Home button down for about 10 second until you see the Apple logo.

  • How to use Wiki and Blog in Spaces

    Hi,
    How do I use wiki and blog inside the Webcenter Spaces. I don't see wiki and blogs. Have configured discussions but trying to find out how to configure wiki and blogs. I don't have any custom application just using Spaces.
    Thanks

    Manish, that's fine. But after doing that and requesting the Spaces Wiki page I'll get a login prompt from Wiki. How do I manage the security hand over mechanism? I'm sorry, but I don't understand the SAML stuff mentioned before in repect of this context here. It refers to a Single Sing on setup for Spaces which I don't have and use. I'd like to propagate the pure WLS embedded LDAP based login to wiki.
    Thanks
    Detlef

  • IWeb and blog retrieval

    Hard disk crashed and iWeb does not recognize me when new disk was installed. How do I get the blog from the web.me.com (where I can see the archive) to my new disk.

    Unless you have a backup copy of the Domain.sites2 file (located in your Users/Home/Library/Application Support/iWeb folder) you will have to recreate your site and blog from scratch.  The entries and comments will be lost.
    Chapter 2.3 on the iWeb FAQ.org site has tips on using some of the existing files, image, audio, video, etc., from the published site in the recreation of the site.
    You can get the entries and comments off the online blog to use in rebuilding the blog. The online blog will still be there.
    With the demise of MobileMe in about a year this is a good time to start your new blog on one of the blogging sites, Posterious, Wordpress, etc., so that it will continue when MMe goes away next June 30th.
    OT

  • How to install first forest and active directory on the windows server 2012 R2 core?

    hi to all
    i installed a windows server 2012 R2 Core edition on the server platform and i want install first forest and Domain on this server core by cmdlet...but i cannot install it. i search in the technet and other sites and blogs on the internet
    and i saw many commands that use for install it such as "DCpromo /unattend" and even
    "Install-addsforest" in the powershell but still i cannot get a result from these commands.
    i need step-by-step guide that help me for install new forest and domain in the server 2012 R2 core.
    thanks a lot friends

    C:\PS>Install-ADDSForest
    -DomainName mydomain.local -CreateDNSDelegation
    -DomainMode Win2012 -ForestMode Win2008R2
    -DatabasePath "d:\NTDS"
    -SysvolPath "d:\SYSVOL"
    -LogPath "e:\Logs"
    you can use above example
    Darshana Jayathilake

  • How to remove Login, sites, register icons in the iStore page

    Hi,
    Can some one guide me in finding how to remove the Sites and Register icon that comes on the top of the iStore pages along with the logo on the left corner.
    Also i want to know how to change the jsp file of the Login icon that comes along with the Sites and Register icon in the top part of the iStore page.
    Please guide me in figuring out the solution for this requirement.
    Thanks
    ri

    Hi,
    No need to customize the ibeCCtdMenu.jsp to remove the icons, It is enough to change the Profile option "FND Branding size" to the value "Medium" or "Small".
    After changing the profile option value, bounce apache. The links will be dispalying now without icons. Try out this!!
    Rajarajan A

  • How to exclude sub sites in navigation from C# code

                                                                
    Hi,
    I need show Global navigation items in custom web part, below code is returning global navigations with sub sites. 
    how to exclude sub sites and return only global navigation items links?
    using (SPSite spsite = new SPSite(SPContext.Current.Web.Url))
                        using (SPWeb web = spsite.OpenWeb())
                            SPNavigationNodeCollection colletion = web.Navigation.TopNavigationBar;
                            foreach (SPNavigationNode navigationNode in colletion)
    //Getting all global navigation nodes including sub sites
    please help me to resolve this.
    Thanks.

    This should work
    if(!web.isRootWeb){web.Navigation.GlobalNavigationNodes.Delete(navigationNode);web.Update()}
    Refer to the following post for more information
    http://www.learningsharepoint.com/2010/09/28/add-links-to-top-navigation-sharepoint-2010-programmatically/
    --Cheers

Maybe you are looking for

  • Why do we get First operand...error message when trying to change password

    Hi I'm new at posting here, so sorry if I'm doing this wrong. I did search first to see if there was info on this already, but I didn't find anything. (If there is already something out there, please point me to it.) We are using PeopleSoft Financial

  • HT2534 did i get itune id for free

    let me in itune for free did you?

  • Windows format to mac

    I originally formatted my ipod using a PC but now have a Mac and was wondering if there is a way to reformat it and if it is worth it for updates or if it's fine to keep it as is. Thank you!

  • BDC for Transaction 1KEK

    Hi All, While doing the recording for 1KEK, I am not able to trap the page down function in table control nor the column ( company code ) selection to use the FIND function to select particular company codes randomly for execution. Thanks and Regards

  • Validation Required before purchase

    Both my ATV's, version 1 and 2, will suddenly not allow me to rent or buy content. When i try....it tells me "Validation Required before Purchase". I am sure that my apple ID and PW are input correctly. How do I force "validation"???? Any ideas??? th