RSSAll Entries Tagged With: "modify"

Automatically Save Web pages before previewing in Microsoft Expression Web 2

Automatically Save Web pages before previewing in Microsoft Expression Web 2

I have a habit of previewing my web pages each and every time I make any change to them. Then I key in CTRL + S or choose ‘Save’ from the common toolbar and then hit F12 or ‘Preview’ from common toolbar; to preview the page. You need to save your web page before you [...]

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 [...]

Paste Options in Microsoft Expression Web 2

Paste Options in Microsoft Expression Web 2

When you choose ‘Paste’ from the Edit menu or press ‘CTRL+V’ in the design view of the web page, to paste a copied piece of text, the Paste Options button  appears just below the pasted text. As you hover over your mouse on the button, it displays a down arrow next to it. Click on the [...]

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> [...]