hyperlink


How to Change the Color of Hyperlink – PowerPoint 2007


There are two methods to change the color of the hyperlink text while working on MS PowerPoint. By following either of the methods mentioned below, you can change the color of the hyperlink text or at the most, match the color of the hyperlink text with the text that is present on a slide.

Point to Note: If hyperlinks are present in the title as well as the sub-title placeholders, don’t change the hyperlink text in the theme.

Method 1: Changing the Color of Hyperlink Text

  1. While you are working on your presentation, you fill find the ‘Design’ tab on the menu bar, next to the ‘Insert’ tab. On clicking the ‘Design’ tab you will find a range of color themes. Locate the ‘Colors’ drop down button and select the “Create New Theme Colors’ option.
  2. As soon as you select that option, a dialog box will open. You will find several options under the heading ‘Theme Colors’. You can choose to do either of the following:
    • Change the color of the hyperlink text by clicking the drop down arrow next to the option ‘Hyperlink’ and selecting the color you want.
    • If you want to change the color of the followed hyperlink (a hyperlink to a destination that you have visited.) text, then click on the drop down arrow next to ‘Followed Hyperlink’ and select a color of your choice.

Point to Note: If you want more colors to choose, click on ‘More Colors’.

3. Once you are done selecting the color, click ‘Save’.

Method 2: Match the Color of Hyperlink Text to the Existing Text on a Slide

  1. Select the existing text on the slide that has the color in which you want the hyperlink text to be. Right click after selecting the text and you will get several options to choose from.
  2. Select the ‘Font’ option and you will find a new dialog box open. In the dialog box, click on the drop down arrow next to ‘Font color’ under the ‘All Text’ heading.
  3. On doing so, you will find a range of colors to choose from. Select the ‘More Colors’ option and another dialog box will open.
  4. Click on the ‘Custom’ tab in the ‘Colors’ dialog box and make a note of the color formula values mentioned in the ‘Color model’ box and in the respective color boxes.
  5. To exit the ‘Colors’ and ‘Font’ dialog boxes, click on ‘Cancel’ twice.
  6. Once you have done this, select the hyperlink text on the slide the color of which you want to change.
  7. After selecting the hyperlink text, click on the ‘Design’ tab in the menu bar and click on the ‘Colors’ drop down arrow. Then, select the last option, ‘Create New Theme Colors’.
  8. On doing so, the ‘Create New Theme Colors’ dialog box will open. In that box, you will find several options under the ‘Theme Colors’ tab. You can choose to do either of the following:
    • In order to change the color of the hyperlink text, click on the drop down arrow next to the option ‘Hyperlink’ and select ‘More Colors’.
    • In order to the change the color of the followed hyperlink text, click on the drop down arrow next to the ‘Followed Hyperlink’ option and select ‘More Colors’.
  9. On choosing either of the options above, a ‘Colors’ dialog box will open. In the dialog box, you will find ‘Custom’ tab. Click the custom to find the ‘Color model’ and other color boxes below. In those boxes, type the color formula values that you had noted down in step 4.
  10. After that, you can click on ‘OK’ and then, ‘Save’.
  11. Posted in Microsoft, Tricks and TweaksComments (1)


    How to Remove Underline from Hyperlink


    Designers may require Hyperlinks without underline so that it does not show as a link or when it doesn’t go well with the design. It is easy to remove underlines using CSS. Open your CSS file and just add these following lines to it:

    a {
    text-decoration: none;
    }

    You can also specify the following options:
    none
    underline
    overline
    line-through
    blink

    This would reflect on all your pages where you have included the CSS file. If you want to specify for just one particular link, then mention the styling inside your hyperlink as follows:

    <a href=’http://www.seo-mind.com/’ style=’text-decoration: none;’>SEO Tutorials</a>

    Underline on Hover Only
    If you wish that Underline should appear only when you move your mouse over, then use the following code:

    a:hover {
    text-decoration: underline;
    }

    Posted in HTML CSSComments (0)


    Advertisement

    Widgets

    Archives