Monday, October 29, 2012

How to Make a Dynamic List Using Dreamweaver

How to Make a Dynamic List Using Dreamweaver

How to Make a Dynamic List Using Dreamweaver 
To create a new style that will alter the look of each list item, you'll want to create a style for the
tag. Choose Format>CSS Styles>New to create a new CSS rule. Under Selector Type, choose Tag and then select li from the drop-down list to the right of the Selector Name field (or type li into the field). Press OK to continue to the CSS Rule Definition dialog.
In the CSS Rule Definition dialog, choose the List Category on the left. Here you can change the style of the bullet by selecting any of the options in the List-Style-Type drop-down menu. If you prefer, you can replace the bullet with your own image by clicking on the Browse button next to the List-Style-Image field and selecting the image you want to use in place of the bullets. You can also remove the bullet completely by choosing None (as we did in this example). Click OK.
buy adobe dreamweaver cs6 mac pc only at $ 50
 Want buy adobe photoshop cs6 at cheap price? you can go to my webshop to buy it ,cheap dreamweaver cs6  full version .
  It is not a OEM or tryout version.
  We offer worldwide shippment .
  You can pay by paypal.
you can buy it at my website shop at only $50 low price cheap dreamweaver cs6 pc mac version and more other usefull design software tools.
 cheap adobe dreamweaver cs6 $50 

Saturday, October 27, 2012

Using a Fluid Grid Layout in Adobe Dreamweaver CS6

Using a Fluid Grid Layout in Adobe Dreamweaver CS6

Using a Fluid Grid Layout in Adobe Dreamweaver CS6
 
The Fluid Grid layouts are clearly based on Ethan Marcotte's Responsive Web Design (the book and the article that led to the book). This feature allows you to specify three fluid grids: one each for mobile, tablet, and desktop layouts. Each grid can have 2–24 columns; a common gutter width between the columns and you can specify how wide the grid should spread across each screen.
You then add fluid grid layout div elements to construct your page in the mobile layout. (Mobile First) The next step lands squarely in the category of "brilliant"—you can resize the elements in each of the layouts, snap them to the grid, and then easily move individual elements to sit alongside and play nice with each other. This is done in either Design view or Live view, and, best of all all, Dreamweaver automatically calculates the percentage width of elements and margins to four decimal places.
This calculation is based on Ethan's formula of target/context = result. A good example of this would be column width. Let's assume you have a page width of 1232 pixels and you decide each column should be 350 pixels wide. To get the fluid column width you divide 350 (the Target) by 1232 (the Context) = 0.28409091. You would then move the decimal two places to the right for a result of 28.409091. Dreamweaver's Fluid Grid layout calculation will shave off the final two numbers for a result of 28.4090 per cent. This calculation applies to anything that has "hard" numbers attached to it such as font size, margin, padding and so on.
The CSS created by the Fluid Grid Layouts uses percentage widths and floats, so it produces layouts that adapt to any screen size. These styles are constructed on the basis of "mobile first" and even work in browsers that don't understand media queries. For those of you new to Responsive Web Design, this one feature alone is enough to get you into the game.
buy adobe dreamweaver cs6 mac pc only at $ 50
 Want buy adobe photoshop cs6 at cheap price? you can go to my webshop to buy it ,cheap dreamweaver cs6  full version .
  It is not a OEM or tryout version.
  We offer worldwide shippment .
  You can pay by paypal.
you can buy it at my website shop at only $50 low price cheap dreamweaver cs6 pc mac version and more other usefull design software tools.
 cheap adobe dreamweaver cs6 $50 

Friday, October 26, 2012

dreamweaver tip vertically bottom align a block element using css

dreamweaver tip vertically bottom align a block element using css

dreamweaver tip vertically bottom align a block element using css
Cascading Style Sheets aren't just for stylizing text. You can also use the design power of CSS to add borders to an image, force text to wrap around an image, and even add images to the background of other elements. For example, the CSS background-image property lets you place an image in the background of a Web page, or add a graphical background to a link.
In general, you probably don't need to create a tag style for the <img> tag. That type of style applies across a site, and affects every image. And while you may want a bright red, 10-pixel border around each thumbnail in a photo gallery, you probably don't want that border around the site's logo or the graphical navigation buttons on that same page. You're more likely to create class styles that you manually apply to certain graphics. In this case, create a class style with the proper border setting, and then apply that class to each gallery image 
Learn how to insert and place an image using CSS when working in Adobe Dreamweaver . Whether you're new to Adobe's popular WISYWIG HTML editor or a seasoned web development professional just looking to better acquaint yourself with the workflow, you're sure to be well served by this video tutorial. For more information, including a step-by-step overview, watch this free video guide..
Correctly Positioning an image with CSS against a block of text can be quite challanging to the novice web designer. Fortunetly it's very easy to accomplish, and in this Dreamweaver tutorial we will show you how.
First let's create a div (a div creates a container and allows attributes to be applied to control it's properties).
To start with we need a container to hold the image and text, in CSS the div element lends it's self perfectly for this purpose.
To insert our div tag Insert > Layout Objects > Div Tag
Dreamweaver will insert the div tag on the page.
Dreamweaver places some default text in the Div layer, remove this. Then place your cursor back in the div tag and click, this is the position that Dreamweaver is going to insert the image.
The image should now be inside the div layer, if you tried to add text next to the image you would notice that it wraps around the bottom of the placed image, not really the effect that we want.
To make things a little clearer we are going to switch from WYSIWYG mode to code view,click on the code button top left
buy adobe dreamweaver cs6 mac pc only at $ 50
 Want buy adobe photoshop cs6 at cheap price? you can go to my webshop to buy it ,cheap dreamweaver cs6  full version .
  It is not a OEM or tryout version.
  We offer worldwide shippment .
  You can pay by paypal.
you can buy it at my website shop at only $50 low price cheap dreamweaver cs6 pc mac version and more other usefull design software tools.
 cheap adobe dreamweaver cs6 $50 

Tuesday, October 23, 2012

Learn the basics of how CSS rules work in dreamweaver

Learn the basics of how CSS rules work in dreamweaver

Learn the basics of how CSS rules work in dreamweaver
In a new HTML or CSS document, open the CSS Styles palette. Click on Window then CSS Styles or Shift-F11.
At the bottom of the window is a small document icon with a plus on it. This allows you to start creating new CSS styles. Click on it.Dreamweaver makes it easy to style a specific tag in your document. Just click on the "Tag" radio button, and write the tag name in the Tag: box.
Note: This option will allow you to style only one tag. If you want multiple tags to have the same style, you need to use the next option.One of the most common CSS selectors is the class selector. So Dreamweaver offers it as your first choice for creating a style. Click on the "Class" radio button, and put your class name in the Name: box. Remember that a class name must be all one word, is case-sensitive, and cannot start with a number.
I named my class "bigHead".
Dreamweaver allows you to create a style sheet for your entire site by choosing to define it in a new style sheet file, an existing style sheet file, and in the current document only. I chose to put it in the current document.View the HTML code and you can see that Dreamweaver added the styles to the head of your HTML document. Even though I didn't put the period (.) at the front of the class name, Dreamweaver did it for me. It also commented out the CSS in case older non-CSS browsers hit the site.
I set my Dreamweaver options to use shorthand for my CSS font properties, so Dreamweaver wrote the font styles as just one long font property.
If you chose to write your styles to a separate style sheet, Dreamweaver will create a new CSS file and write the CSS there. You will then need to link to that style sheet from your Web pages.
Once you've defined a class, you can use it to change the style of any associated element on your document. First select the element you'd like to style, then go to the Properties menu (Ctrl-F3 or Cmd-F3) and choose the style class from the drop down menu. As you can see, if the class has visual text styles, they will show up in the menu, so that it's easier for you to tell which style you're picking. You don't even have to remember the name.
buy adobe dreamweaver cs6 mac pc only at $ 50
 Want buy adobe photoshop cs6 at cheap price? you can go to my webshop to buy it ,cheap dreamweaver cs6  full version .
  It is not a OEM or tryout version.
  We offer worldwide shippment .
  You can pay by paypal.
you can buy it at my website shop at only $50 low price cheap dreamweaver cs6 pc mac version and more other usefull design software tools.
  cheap adobe dreamweaver cs6 $50 

Saturday, October 20, 2012

How to Build a Dreamweaver Template

How to Build a Dreamweaver Template

How to Build a Dreamweaver Template
All new pages must be created from an existing functional page in your site. The new page will take on all the source page's features, so choose the source page carefully. By features, we mean BreadCrumbs, LeftColumn links, and tab highlight, if any.
Step 1: Identify a page (and file) to duplicate
Locate the page you want to duplicate in a browser; for this exercise, find the 2-column stationery page
Examine the URL in the Address bar; the URL will tell you where to look for the file in your site, e.g. root/2col_stationery.html
Switch to Dreamweaver, find the file in question within your local site files directory, and open it, as if for editing
Use the menu sequence File > Save As… and give the file a new name. Make sure there are no spaces or special characters in the file name. You can use hyphens (-) or underscores (_) to make words in your file names. Keep file names as short as possible. If working on a tutorial, try "my_page.html"
Step 2: Modify your new page, save and put
Update the main headline: "This is [your name]'s Page"
Update the browser title: "[your name]'s Page"
Save the file and then use the menu sequence Site > Put. You can click "No" on the Dependent Files prompt
Step 3: Validate the new page in your browser
Switch to the browser window and find your site's home page
Look at the Address bar; it either ends "/" or "/index.html"
You want "/my_page.html"; if the URL ends in "/" go to the end and type "my_page.html"; if it ends "index.html" select this and replace it with "my_page.html"
Type Enter; you should see your new page
If not, check your URL and file name; they must match exactly, including capitalization
You can switch back to Dreamweaver and close the my_page.html file
Filling in your content
In reality, you would fill in all of the page's content -- text, images, charts, etc. -- and upload it to the server to "publish" it (sort of)
Until the page is linked, it's what we refer to as "Secure by Obscure" in that it can only be found if one is provided the URL
The edited file is available in the browser and can be found by users if:
The page is linked to from another page, OR
You provide the URL to users, say by email; this is one method of private review before publication
 
buy adobe dreamweaver cs6 mac pc only at $ 50
 Want buy adobe photoshop cs6 at cheap price? you can go to my webshop to buy it ,cheap dreamweaver cs6  full version .
  It is not a OEM or tryout version.
  We offer worldwide shippment .
  You can pay by paypal.
you can buy it at my website shop at only $50 low price cheap dreamweaver cs6 pc mac version and more other usefull design software tools.
 cheap adobe dreamweaver cs6 $50 

Thursday, October 18, 2012

how to recover Lost Site Definitions in Adobe Dreamweaver

how to recover Lost Site Definitions in Adobe Dreamweaver

We often hear from people: "I'm on a new computer. How do I get all of my Dreamweaver sites over to the new computer as well?"

Variations on this theme include: "My computer got wiped out; how can I get my sites back?" as well as "I had to reinstall Dreamweaver and lost all of my sites. How can a restore them?"

The answer to all of these questions is that you must import Dreamweaver site definitions (information that is kept in an .ste file) in order to restore a previous site. As Adobe Community Expert David Powers says, "Losing your site definitions in Dreamweaver can be a disaster, but it does happen sometimes. The best way to prepare for such an eventuality is to back up your site definitions on a regular basis."

Create backups of your site definitions

You can back up all of your site definitions in a single operation:

In Dreamweaver, choose Site > Manage Sites.
In the Manage Sites dialog box, Shift-click to select all site names.
Click Export.

Dreamweaver asks if you want to include passwords and login details (this is the default option). Whichever option you choose will be applied to all sites, so if you want to export passwords/login details for some sites and not others, click Cancel and then export your sites in two sets by using Ctrl/Cmd-click to select them.
Click OK.
Dreamweaver asks where you'd like to save the exported site definitions. Navigate to a suitable location, leave the File name field unchanged, and click Save. Although only one site name is listed in the File name field, Dreamweaver exports all of the site definitions as .ste files in a single operation.
NOTE: This process backs up only the details of your sites, such as the location of the root folder, FTP details, and so on. It does not back up the actual files in your site, such as .html (or .php, .asp, .cfm) files, images, and style sheets. It's a good idea to use your normal file backup routine on your actual files from time to time, as well as exporting the site definitions.

Restore site definitions

In the event of losing your site definitions in Dreamweaver or moving to a new computer, open the Manage Sites dialog box (Sites > Manage Sites), and use the Import button to navigate to your backup .ste files.

 

buy adobe dreamweaver cs6 mac pc only at $ 50

 Want buy adobe photoshop cs6 at cheap price? you can go to my webshop to buy it ,cheap dreamweaver cs6  full version .

  It is not a OEM or tryout version.

  We offer worldwide shippment .

  You can pay by paypal.

you can buy it at my website shop at only $50 low price cheap dreamweaver cs6 pc mac version and more other usefull design software tools.

 cheap adobe dreamweaver cs6 $50