RSSAll Entries Tagged With: "tips"

Useful Resources for Microsoft Expression Web

Useful Resources for Microsoft Expression Web

Here are some websites and blogs that offer very informative tutorials, articles, tips, tricks, trainings, ebooks and other resources for Microsoft Expression Web. http://expression.microsoft.com/en-us/cc197140.aspx for tutorials, videos, free Expression Web templates. http://any-expression.com - is owned by Tina Clarke, who is a fellow Expression Web MVP. The site features plenty of tutorials, tips, ebooks on Expression Web and FrontPage. [...]

Style toolbar in Microsoft Expression Web 3

Style toolbar in Microsoft Expression Web 3

You must be familiar with the Apply Styles and Manage Styles panels (earlier known as Task Panes). The Style toolbar has fewer but similar functions. The Style toolbar enables you to quickly use class and ID selectors, create new styles and attach existing ones. But if you have been using the Apply Styles and Manage [...]

To automatically add form tags around form controls in Microsoft Expression Web 3

To automatically add form tags around form controls in Microsoft Expression Web 3

When you create a form, you add form controls to the form. In other words, form controls like textboxes, radio buttons, and check boxes are grouped inside form tags. But if you add form controls directly to your page, they are not enclosed within the form. But you can set Microsoft Expression Web to automatically [...]

Create scrollable area using CSS in Microsoft Expression Web 2

Create scrollable area using CSS in Microsoft Expression Web 2

A scrollable area is where content can be presented and can be scrolled through. When you have a lot of content to be presented in a particular section, it is beneficial to add a scrollable area, without occupying much space on the page and keeping it organized. You can always add a textarea or use [...]

Rearrange commands on toolbars and menu in Microsoft Expression Web 2

Rearrange commands on toolbars and menu in Microsoft Expression Web 2

Rearrange Commands tool lets you do all possible actions to customize your toolbars and menus the way you want them. You can rearrange the commands on the toolbar to: ·         Add, remove, reorder the commands on the menu bar and toolbar. ·         Modify the name, image and keyboard shortcut associated with a menu command or [...]

Quick Tag Selector in Microsoft Expression Web 2

Quick Tag Selector in Microsoft Expression Web 2

A Quick Tag Selector bar is located at the top of the editing window in your Expression Web workspace. It makes it easier for you to select, edit and remove tags while working in Design or Code view of a web page. To view the Quick Tag Selector bar, go to View > choose Quick [...]

Change color on mouse hover in Microsoft Expression Web

Change color on mouse hover in Microsoft Expression Web

To change the background color and font color of a div on mouse hover, use this CSS code. <style type=”text/css” > .title_div{                 background-color:black;                 color:white; } .title_div:hover{                                 background-color:green;                                 color:black; } </style> <body>         <div class=” title_div”>                         On mouse over div becomes green and text turns black.         </div> </body> [...]