Where does one change the default formatting for a URL (href)

I want to have change the appearance of my href="#" tags so that they are not blue and underlined
Want to do that with a CSS
Do not know where to find and change the default setting in DW CS5 so that I make the changes globally
Could I have different styles of href="#"?
In the property list under what name is it in?
Thanks
erik

Best practice would be to create an external style sheet and link to it in the <head> like this:
<link rel="stylesheet" media="all" type="text/css" href="style_sheets/main_styles.css" />
of course edit for your folder structure and file names.
But you could test various styles by placing them in the <head> directly, like this:
<style type="text/css">
<!--
a:link {
color:#ffffff;
text-decoration: none;
a:visited {
color:#ffffff;
text-decoration: none;
a:active {
color:#ffffff;
text-decoration: none;
a:link:hover {
color:#ffffff;
text-decoration: none;
a.home:link {
color:#0099FF;
  text-decoration: none;
a.home:visited {
color:#0099FF;
  text-decoration: none;
a.home:hover {
color:#0099FF;
  text-decoration: none;
a.home:active {
color:#0099FF;
  text-decoration: none;
-->
</style>
More info on how to include CSS:
http://www.w3schools.com/css/css_howto.asp
Best wishes,
Adninjastrator

Similar Messages

  • How does one change the date format for PlayMemories Home folders?

    I am using PlayMemories Home Version 2.0.00.11271 and have many folders within it which contain only photographs imported from my Sony DSC-H9.  Unfortunately, PlayMemories Home insists upon dating all folders in a month/day/year manner; and this makes little sense if one wishes to have the folders listed in logical chronological order.  How can I change the date format to year/month/day?  Changing the name of each folder, one by one, will take a very long time!  Your helpful advice in this matter will be greatly appreciated.  Thank you. System information:
    Operating system: Microsoft Windows XP Professional
    Service pack : Service Pack 3
    Memory: 1.5 GB
    Processor:         Intel(R) Pentium(R) M processor 1.86GHz
    Max. clock speed: 1.86
    Manufacturer: IBM
    Model: 1847W76
    System language setting: English (United States)
    User language setting: English (United States) 

    I too thought that the folder naming format was obviously wrong and couldn't find a way to change it. I do agree that placing photos in folders according to when they were taken is a great idea. I had been considering writing some software to do just that. After discovering that PlayMemories does it, I had it re-import all my photos. Then I wrote a small Perl script to rename all of the folders into year-month-day format. Included here is the Perl script. It only acts on a single folder - use it on the root folder where all the PlayMemories folders are. It will rename all folders currently in a month-day-year format. I used it without problems but of course there is no guarentee that it is error free. This should work with any common version of Perl. Tom # There should be one command line argument: the directory to act upon
    if ( scalar(@ARGV) == 0 ){
     print "Usage: RenameDirs <dir>\n";
     print " Where dir is the directory containing the directories to rename.\n";
     exit;
    $mydir = $ARGV[0];
    chdir $mydir or die "Couldn't chdir to $mydir: $!";
    opendir(ROOTPHOTODIR, ".") or die "Failed to open the pictures directory $mydir: $!";
    @allphotodirs = readdir ROOTPHOTODIR;
    closedir ROOTPHOTODIR;
    foreach $dir (@allphotodirs) {
     if ( -d $dir ) {
      print "$dir is a directory";
      if ( $dir =~ /^(\d{1,2})-(\d{1,2})-(\d{4})$/ ) {
       print " and has the proper format: month $1 day $2 year $3 and will be renamed to ";
       $newname = sprintf "%4u-%02u-%02u", $3, $1, $2;
       print "$newname\n";
       rename $dir, $newname or die "failed to rename $dir to $newname: $!";
      else {
       print " but is not of the proper format\n"
     elsif ( -f $dir ) {
      print "$dir is a file\n";
     else {
      print "$dir is neither a directory nor a file\n";
    }

  • Where can one change the default setting for itune u (ie so that download all is default)

    Where can the defaults for itunes download setting be changed?  I would like it to be download all instead od download the first only.  I don't want to have to open each and change it on a one by one basic.  os is 10.8.4 running on a macbook pro

    Okay after much research and trial I finally figured it out.  When you open up the settings menu at the very top of the list of itune u courses is the default selection by checking this it then becomes the default choice.  You will not see this unless you open the dropbox and go to the top and even then you might think it was just a header.

  • How does one change the font size for folders and/or file lists in the Bookmarks Library?

    How does one change the font size for folders and/or file lists in the '''Bookmarks''' Library?
    Since the upgrade to version 9.0.1 of Firefox, the Bookmarks feature changes are confusing me. They seem to be confusing themselves as well. The list of bookmarks has changed. The font size is so small that my aging eyes cannot read it without fogging the screen with my breath. Some folders are out of alphabetical order (where I know they were previously good), and some are missing altogether (folders to which I frequently add references).
    As for missing or deranged files or folders, was there something that I should have done or now need to do to recover those after the upgrade (or before)?
    With regard to font size,
    1. there is no “Edit Bookmarks” or like option to edit the list in this version
    2. the “zoom” option in the “view” list of functions is greyed out when in “Show All Bookmarks” window
    3. expanding the browser window has no effect on font size
    4. “Preferences” settings for font size has no effect in that window either, including advanced settings
    5. “Help” offers none that I can find.
    Can any of you Help?!?

    Maybe this extension helps:
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/

  • How to Change the default format for differnt language both in java and SQL

    Hello,
    I am using SQL Anywhere in my application.And in my java client application user can log in with their preferred language like English,French,German,Chinese,etc....When even the user log in to the application the data from the database will be displayed with respective to the language.But when i tried to see the dates in Interactive SQL all the dates r in the format of '2008-12-5 16:44:10:673' but say for example for Chinese it will be displayed as '08-12-5 16.44.10' and for some other language it will come in some other format(which is standard format for those language).
    Mean while i am using java client.When ever i am displaying a date it will be with respective to the language using Locale and date format classes.When i am displaying the date for Chinese in GUI it will show the date as '08-12-5 &#19979;&#21320;4:44'. In summary
    1. For Chinese,the default date pattern from SQL Anywhere date base is '08-12-5 16.44.10'
    2. For the same language date using java code is displaying as '08-12-5 &#19979;&#21320;4:44'. and i am getting the time format pattern as 'ah:mm'.I tried to change the display format in regional settings but no change in display.
    Is there any way to make both the time format as same?
    Please help me to solve this issue!!!
    Thanks in Advance!
    Arun

    pon_arun wrote:
    Hello masijade,
    I did as u said but still the date display is not the same......And I'm telling you that it doesn't matter. What "format" the DB likes to display a Date in when it displays it, is completely irrelevant to how you display it in your GUI.
    A Date does not have a format. A String representation of a Date does.
    As long as you use getDate from ResultSet and setDate from PreparedStatement you do not have to worry about this. Those methods will handle dates to and from the DB themselves. You can then use SimpleDateFormat to display the Date anyway you want to.
    Just because you show the Date one way, and the DB shows it another, does not mean that it is not the same date. Don't get hung up on how the String representation of the Date looks.
    Edit: If you simply want to be able to do "Human Comparisons" then look at the SQL TO_CHAR function (for Oracle, for other DBs the function name may vary). And for Java, read the API docs for SimpleDateFormat (as already intimated above).

  • Where do I change the default directory for print to file?

    Currently the file is placed in the Mozilla Firefox directory under the Programs files directory. I want to change the default directory.

    This is not solved as I do not know where to change the default directory.

  • EIM 4.3.1 - Where do you change the default timezone for reports?

    I have noticed when running reports that the default time zone always seems to be -5 Indiana (East). I have changed the business calendars under the departments but it does not seem to make any difference to the reports. Is there some where else this needs to be changed or is this some sort of bug?
    Thanks,
    Matt

    Matt the timezone is coming from the pc where you invoke the report, a saved report can be scheduled to run
    using a specific time zone, at run time or whilst creating a report your locale will be used to populate the time zone.
    Calendars do not drive report time zone and drives workflows and chat entry points. Time zone for logs and other calculation is based on the server time zone.

  • How does one change the default iMessage font?

    from Helvetica 12 to anything else other than going to format>show fonts which seems to only temporarily alter the font?

    Hi,
    You cannot access the two settings indicated ?
    The Font Option allows choice of Font
    You can colour the "Balloons" as in my Pic and you can also colour the Font.
    I am trying to think of any reason why you may not be able to change but cannot think of any.
    Possibles
    Parental Controls does exclude you from changing some things in the Preferences (mostly in the Accounts pane and Privacy for AIM names).
    If you did not own the .plist this info is kept in there might be issues but I cannot say I have seen them before.
    8:36 PM      Monday; October 22, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Where does one find the WPA-key for their airport express?

    I'm trying to have a Playstation 3 access my airport express network.  It sees the network but when I get to the security settings (which is WPA-2) it asks for my WPA key.  I don't know where to find that.  I went into my computer's keychain utility to find it, but I am rather lost there.  Any help?

    I now am able to log on, thanks.  I typed this in earlier and it said that it was an invalid key.  Not sure what settings were doing things before.  Thanks alot.  However, I'm having another problem. 
    Since I got my airport express I have been having trouble logging onto certain sites that I use to with just the cable modem.  The progress bar in Safari goes about half way and then stops.  Firefox browser does the same thing on the same sites.   It is only a just a couple sites like Yahoo home page for emails.  When I tried to log into the Playstation Network, the same thing happened, it won't access it and then times out.  My OS version is 10.6.8 if that helps. 

  • Where does one find the jar file for oracle.forms.[ui/pjc/...]

    Hello,
    I'd like to run some of the forms samples on technet, but I don't seem to have the jar file containing oracle.forms.[ui/pjc/...]. Does anyone know here I can find it?
    Thanks
    Eric Kamradt
    [email protected]

    Hi,
    Check out the "download" link at the following address.
    http://cougaar.org/cgi-bin/viewcvs.cgi/jars/lib/jbcl.jar?cvsroot=core
    Hope that help,
    Jack

  • Where can I change the default setting of H tags in dreamweaver cc?

    Where can I change the default settings for the html Heading tags in Dreamweaver?

    The customary approach is to style them yourself in your CSS.  Or use one of the various CSS resets.
    h1, h2, h3, h4, h5 {
         margin:0;
         padding:0;
    h1 {font-size: 175%}
    h2 {font-size: 150%}
    h3 {font-size: 125%}
    h3, h4, h5 {font-size: 110%}
    Nancy O.

  • Where does one find the Very Useful tool, Magic Wand,  in the latest version of Photoshop, anyone?  Its been well hidden.  Why change for change's sake?

    Where does one find the Very Useful tool, Magic Wand,  in the latest version of Photoshop, anyone?  Its been well hidden.  Why change for change's sake?

    csuebele wrote:
    I guess I'm too slow, Trevor.
    That's no bad thing Chuck.  It indicates that you have better things to do than constantly refresh the forum LOL.
    I'm having a wee posting spree today after lacking the inclination to respond to the same old threads for the last few days.    But I do love it when people get all in a tizzy complaining about stuff that is right under their nose (so to speak).   So I guess my criteria for responding is often based as much on how big a smile it puts on my face, as to how much I am helping the OP.   Unfortunately that irreverent approach gets me into trouble at times, and one of the moderators deleted one of my illustrated replies just a few days ago.  It took me a few minutes to work out why it had been deleted.  The subtext was 'risking one eye', and I eventually realized that the implied 'risk' could definitely be seen as offensive to some people. 

  • I have a Windows Server 2008 R2 system. I am using Adobe Acrobat XI Pro. I am looking for the place where I can change the default font from Minion Pro to Calibri? Tools, Content Editing, Formatting

    I have a Windows Server 2008 R2 system. I am using Adobe Acrobat XI Pro. I am looking for the place where I can Change the Default font from Miinion Pro to Calibri?
    Tools, Content Editing, Formatting

    You can't change it.
    On Tue, Jan 13, 2015 at 11:22 AM, tonywaidmann <[email protected]>

  • Where does FireFox get the default value of a preference from. What is the format of the file that has the default value?

    Where does FireFox get the default value of a preference from. What is the format of the file that has the default value?. I need the actual default value for a particualr preference.
    About:config does show some default values but I need the source from which about:config picks up the default value.
    Any help in this direction is greatly appreciated.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)

    The prefs that aren't hidden if they are the default are stored in two JavaScript text files in the Firefox program folder
    You can open them via these links in a Firefox tab:
    <code>resource:///defaults/pref/firefox.js
    resource:///greprefs/all.js
    </code>
    ([/forum/1/702598])

  • Where does one find the Oracle Best Practice/recommendations for how to DR

    What is the Oracle Best Practice for install/deployment and configuration of ODI 11g for Disaster Recovery?
    We have a project that is using Oracle ODI 11g (11.1.1.5).
    We have configured all the other Oracle FMW components as per the Oracle DR EDG guides. Basically using the Host ip name/aliasing concept to ‘trick’ the secondary site into thinking
    it is primary and continue working with minimal (or no) manual reconfiguration. But will this work for ODI? The FMW DR guide has sections for SOA, WebCenter and IdM, but nothing for ODI.
    Since ODI stores so much configuration information in the Master Repository..when this DB gets ‘data guarded’ to the secondary site and promoted to Primary…ODI will still think it is at the ‘other’ site. Will this break the actual agents running the scenarios?
    Where does one find the Oracle Best Practice/recommendations for how to DR ODI properly?
    We are looking for a solution that will allow a graceful switchover/failover with minimal manual re-configuration.

    user8804554 wrote:
    Hi all,
    I m currently testing external components with Windows Server and I want to test Oracle 11g R2.
    The only resource I have is this website and the only binaries seem to be for Linux OS.You have one other HUGE resource that, while it won't answer your current question, you'd better start getting familiar with if you are going to use Oracle. That is the complete and official documentation, found at tahiti.oracle.com
    >
    Does anybody know how I can upgrade my Oracle 11.1.0.7 version to the R2 release?
    Thanks,
    Bertrand

Maybe you are looking for