How do I get a different background color in the dock in Mavericks?

Has anyone figured out how to change the background color in the dock?  The default is really bad and hard to read.

dont know how but looking at this video, this guy sems to have a solution
=> http://www.youtube.com/watch?v=TXwGP9hkHDQ&ytsession=1uKskJuFULWJ4S9dtlGhOuS2K1F egefIt4_t4UMOVdnn24KtXByipkEVNKRIm0un6jlloUu8at22J1pboQ56RPHKX0Sp1PkvfCtVKga_f9H NN9n104j5psKQFS4q8yBii2OiaZ8IXqXmGIkXmXs_DD2ypL-Er4kRe2YLnEBIpbv9kNbkFSsNsZu_BXu 8qGqQ7H4WCxq4m3yevxbUhY6G-f-5rWtrERD6o4oCB-OOGs1_BzgpsfxT9JYZBIhx53EgZpsNQEdVvPL USgXhw82EdXYwwpuJs0gLawJV1gWEE2Q
if you look at his dock, it's not silver bright but blue and he add a line before the trash

Similar Messages

  • How do you get 2 different link colors on the same page in DW CS4

    Hi
    After creating a white link called “white link test” in a blue background, I need to create a blue link called “blue link test” in a white background. How do I accomplish this task In DW CS4? I would greatly appreciate any feedback. Thank you
    <style type="text/css">
    <!--
    #apDiv1 {
                    position:absolute;
                    width:117px;
                    height:47px;
                    z-index:1;
                    background-color: #0000FF;
                    left: 6px;
                    top: 103px;
    a:link {
                    color: #FFF;
    -->
    </style>
    </head>
    <body>
    <div id="apDiv1"><a href="file:///C|/wamp/www/laserzone/public_html/add_maintenance.php">white link test</a></div>
    <p> </p>
    <p>blue link test</p>
    </body>
    </html>

    Nothing has changed. A stylesheet is still a stylesheet.  And pseudo-classes are still pseudo-classes.
    You need to define a set of link states (link, visted, hover, active) for each ID or class name required.
    Let's say you want to have red  links in your #header and white links in your #footer.
    CSS:
    #header  a {text-decoration:none}
    #header a:link {color:red} /**unvisited**/
    #header a:visited  {color:gray} /**visited**/
    #header a:hover, /**on mouse over**/
    #header a:active, /**on  click**/
    #header a:focus {text-decoration:underline}
    #footer a  {text-decoration:none}
    #footer a:link {color:white}
    #footer a:visited  {color:yellow}
    #footer a:hover,
    #footer a:active,
    #footer a:focus  {text-decoration:underline}
    HTML:
    <div id="header">
    <a  href="some-link.html">Link in the header</a> |
    <a  href="some-link.html">Link in the header</a> |
    <a  href="some-link.html">Link in the header</a> |
    </div>
    <div  id="footer">
    <a href="some-link.html">Footer  link</a> |
    <a href="some-link.html">Footer  link</a> |
    <a href="some-link.html">Footer  link</a> |
    </div>
    For more on CSS pseudo classes:
    http://www.w3schools.com/css/css_pseudo_classes.asp
    Nancy O.
    Alt-Web  Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • How do I get rid of background color in shortdesc

    Every time I remove the background color from the short.description paragraph tag, it comes back when I reopen FrameMaker. I don't want any background colors in my short descriptions.

    Ah .. FM10 and DITA 1.2 .. too bad, you're in for a bit of a chore.
    The 1.2 apps are here .. AdobeFrameMaker10\Structure\xml\DITA_1.2\
    Unfortunately, there are lots of them, and it's not immediately clear how to approach things. Opening an XML file in Frame requires a structured application in order to define the valid document model and to apply the proper formatting. The formatting is applied by an EDD, which defines the mapping from elements and associated styles which live in the template (the EDD itself is embedded in the template as well). The structured applications are defined in the structapps.fm file (of which there are two). One of these can be seen when you choose the Structure Tools > Edit Application Definitions file (this lives in the user's "app data" area), but another is at AdobeFrameMaker10\Structure\structapps.fm (this is the "core" structapps file). The two files define the available structure applications, any definitions in the user's file override those in the other file (I'm pretty sure).
    So .. when you open an XML file, Frame scans the structapps files for matching doctypes, if only one is found, that app is used. If multiple matching doctypes are found, you are presented with a dialog that lets you choose from the available apps. If you didn't select an app when opening the file, you'll need to look in the structapp files to see which one was used for your file. The root element in your file defines the doctype (as well as the Public ID). If this is a "task" topic, you'd look in the structapp files for matching apps that support the "task" doctype (if you're using DITA 1.2 you'll be looking for a DITA 1.2 task .. I'm not totally clear on how FM differentiates between the two). In my installation the DITA 1.2 definitions are in the core structapps file, but it could be in either place (or both).
    Once you locate the structure app definition, it will have nodes that define the Template, the DTD, the ReadWriteRules, and other things. You're just looking for the template though. If you're using a "task", for DITA 1.2 that's likely to  be the DITA_1.2_task structure application .. the template is located at ..
         $STRUCTDIR\xml\DITA_1.2\app\technicalContent\template\task.template.fm
    where "$STRUCTDIR" is the location of the FrameMaker\Structure folder (or possibly defined differently in the maker.ini .. but that's a different issue).
    Editing this one file will affect the formatting of future task topics you open. You'll have to do the same thing in the other corresponding topic type templates to affect all of the topics.
    In previous versions of Frame, it used the "ditabase" model for authoring and publishing. This encapsulates all of the models in one file making it much easier to maintain. This model is more parallel to the DITA model, but will be a real nightmare for people to customize. I'm not going to begin to try and explain how you'd clone these apps to make your own, although you can read a document written for DITA-FMx and DITA 1.1 that gives you the fundamental process ..
         http://docs.leximation.com/dita-fmx/1.1/?ditafmx_cloningtapps.html
    I'm hoping that I've explained this correctly .. I'm still trying to wrap my head around it myself.
    Cheers?
    ...scott

  • How do I get my Documents folder back on the Dock?

    I have Snow Leopard 10.6.8, and I've read a string of similar questions/answers. I've tried dragging the documents folder from the sidebar in Finder, but it won't drag to the Dock by Trash. Where else should I look? I've tried to 'control-click' Applications, but the only options available are 'Open', 'get info', rename documents, & 'remove from sidebar'.

    Okay, no problem - first, go to the Finder menu here:
    click on Preferences, then General, and make sure your hard disks are checked to show on the desktop.
    After that, you should see something like this in the upper right corner:
    Yours may say Macintosh HD (I renamed mine), but the icon should be there. That is your hard drive icon - that is where everything is.
    So, doubleclick or right click on that and make sure you have list view or column view selected, like this and then follow the path I outlined above:

  • How do I get my widgets icon back on the dock?

    Help. All of a sudden my icon for widgets (speedometer) disappeared from the dock. I can still get to it by pressing F12 but I can't find a way to get it back on the dock. Does anyone have a solution?

    Ron,
    What happens if you enter Dashboard in Spotlight?
    If you do not find the Dashboard.app with Spotlight it is most likely gone, but you could get Pacifist and extract Dashboard from your Tiger Installation disk.
    ;~)

  • How do I get rid of background color in a table?

    I insert a table and it shows up with a blue background.  The properties panel shows no background selected.  I changed it to a white background but nothing happened.  I made a new class named tableformat, it took all the styles I applied to the class except the background, still blue.  Here is the code:
    <table width="600" border="1" cellpadding="3">
                <tr>
                  <th scope="col"> </th>
                  <th scope="col"> </th>
                  <th scope="col"> </th>
                </tr>
                <tr>
                  <td> </td>
                  <td> </td>
                  <td> </td>
                </tr>
                <tr>
                  <td> </td>
                  <td> </td>
                  <td> </td>
                </tr>
              </table>
              <p align="left"> </p>
              <p> </p>
    Thank you in advance for any help anyone can give me.

    Here is code for the page with the table:
    <title>Biological Sciences - Home</title>
    <style type="text/css">
    </style>
    <link href="CSS/Style.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper">
      <div id="header"><img src="images/header.jpg" width="900" height="200" alt="Biology Department" /></div>
      <div id="MainNav">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="welcome.html">Welcome</a>      </li>
          <li><a href="faculty.html">Faculty/Staff</a></li>
          <li><a class="MenuBarItemSubmenu" href="programs.html">Programs</a>
            <ul>
              <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
                <ul>
                  <li><a href="#">Item 3.1.1</a></li>
                  <li><a href="#">Item 3.1.2</a></li>
                </ul>
              </li>
              <li><a href="#">Item 3.2</a></li>
              <li><a href="#">Item 3.3</a></li>
            </ul>
          </li>
          <li><a href="resources.html">Student Resources</a></li>
          <li><a href="#">Clubs</a></li>
          <li><a href="#">COC Links</a></li>
          <li><a href="contact.html">Contact</a></li>
        </ul>
      </div>
      <div id="content">
        <p>Content for  id "content" Goes Here</p>
        <table width="600" border="1" cellpadding="3">
          <tr>
            <th scope="col"> </th>
            <th scope="col"> </th>
            <th scope="col"> </th>
          </tr>
          <tr>
            <td> </td>
            <td> </td>
            <td> </td>
          </tr>
          <tr>
            <td> </td>
            <td> </td>
            <td> </td>
          </tr>
        </table>
        <p> </p>
        <p> </p>
      </div>
      <div id="footer"><img src="images/footer.jpg" width="772" height="297" alt="Aliso Lab" /></div>
    Content for  id "wrapper" Goes Here</div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • HOW CAN I GET A DIFFERENT STATE WHEN CREATE THE VM

    All i Always get is 
    Country
    United States  (US) 
    Region Washington (WA)
    City Redmond
    ZIP code
    98052
    What do i do to change the state ...Please help

    Hi,
    Would you be able to provide us details as to when you get State option while creating a VM?
    Is the address you have mentioned your billing address? Does this come up in the Management portal or the Billing portal?
    You could refer the following link to create a Windows VM in Azure:
    http://azure.microsoft.com/en-us/documentation/articles/virtual-machines-create-custom/
    If you notice in the article, when creating a VM in the Management Portal, it only prompts you for the region, affinity group or Virtual Network, as shown below.
    Regards,
    Malar.

  • How do you get rid of paused applications in the dock?

    Suddenly I have tiny icons in my dock because there are all sorts of invisible paused icons. I can delete them individually, but they come back every startup. I tried the advise in the post
    "How to permanently delete..."
    but they didn't work. I don't have any VirusScanner or other such software.
    I have OS 10.6.8 on this laptop..

    When you hover over one of the 13 ovals, it displays the name of the application, eg "Remote Mouse - Paused"

  • Can I get different background colors on menu items?

    I've been trying to get different background colors on my menu (Quick launch) items for a while, without success. What I want is the even numbered items (the second, fourth, sixth...) to have a different background color than the uneven ones (first, third,
    fifth...).
    Anyone knows if this can be done?
    Thanks, guys!

    Can you do something in the javascript code where you have given specific IDs to each buttons in your menu? It could end up in something like "$('#menu_id').css('background-color', '#1B3E70');"
    Or, let say you have controls defined like thie:
    <body>
    <ul class="menu">
    <li class="menu-item"><a>item 1</a></li>
    <li class="menu-item"><a>item 2</a></li>
    <li class="menu-item"><a>item 3</a></li>
    </ul>
    </body>
    Can't you write at render stage this kind of actions by index:
    var i = $("li").index( $(this).parent() );
    if ( i === 1 ) {
    $('body').css('background', 'red');
    } else if ( i === 2 ) {
    $('body').css('background', 'green');
    } else {
    $('body').css('background', 'brown');

  • How do I customize the background color of the Bookmarks Drop Down Menu?

    The drop down bookmark menu is a very light grey and the highlighting is also very light and hard to see. Where in about:config can I change these colors.
    Also is there a way to bold certain bookmark items in the bookmark menu?
    I'm using ver. 19.02

    ''bmail wrote:''
    I appreciate the amount of time you put into typing up the example and I'm sure the example is great, but again...I have no idea how to use it or where to put it.
    You were supposed to install [https://addons.mozilla.org/firefox/addon/stylish/ the Stylish extension]. Once installed, there's a new category in the Add-ons Manager called User Styles. In that category, there's a button labeled Write New Style which opens a window where you can paste or write CSS code; click the Preview button to see what how your style affects the interface or a web page, or the Save button to keep it.
    Styles in the userChrome.css file cannot be previewed, and any changes only take effect after restarting Firefox. Since the ChromeEdit Plus extension simply allows you to edit that file, presumably it has the same limitations.
    Anyway...
    ''bmail wrote:''
    What code would I need to have all the sub menus be the same background color as the main bookmark menu?
    <pre><nowiki>/* Menu bar bookmarks menu background */
    #bookmarksMenuPopup hbox {
    background: silver !important;
    }</nowiki></pre>
    Note that you can replace '''silver''' with another named color, or an RGB color value.
    * https://developer.mozilla.org/en-US/docs/CSS/color_value
    ''bmail wrote:''
    What code would I use to change the highlight color that you see as your cursor hovers over the menu items?
    I wrestled with this one for a while, but I couldn't get it to work, and I gave up due to time constraints. Again, I suggest you head over to the userstyles.org forum and ask there.
    * http://forum.userstyles.org
    ''bmail wrote:''
    How do I designate what menu items I want in bold face?
    The relevant bit of information is the bookmark or folder name. Note the value of the label attribute in the above example (the stuff between quotation marks); that's how you show the Recently Bookmarked folder in bold text. You can combine several selectors (the stuff before the first { character) into one by separating them with a comma, like so:
    <pre><nowiki>#bookmarksMenuPopup menu[label="Some folder"],
    #bookmarksMenuPopup menu[label="A different folder"],
    #bookmarksMenuPopup menuitem[label="This one's a bookmark"],
    #bookmarksMenuPopup menuitem[label="Some other bookmark"],
    #bookmarksMenuPopup menu[label="Yet another folder"] {
    font-weight: bold !important;
    }</nowiki></pre>
    You're welcome.

  • The new operating system changed the background color of the photos app from black to white.  How do I change the color back to black?

    The new operating system (IOS 7) changed the background color of the Photos App (Camera Roll) from black to white.  How do I change the color back to black?

    You can't. Sorry.
    http://www.apple.com/feedback/
    You can tell apple that you'd like it and see if they respond....eventually. (you don't get responses from your feedback mails but they have been known to issue changes that users have asked for, such as the ability to mass delete apps)

  • How do I get a white background with black lines

    How do I get a white background with black lines and characters on my screen. To run the program, copy it out and delete the ` and it should go. If it does not compile on your machine, I would like to know. There is a test on about line 34 for changing the colors.
    `//Simple program to test Graphics2D.setBackground(white) obtained from BufferedImage.getGraphics()
    `import java.awt.Frame; //Object>awt.Component>Container>Window>Frame
    `import java.awt.Insets; //Object>awt.Insets
    `import java.awt.image.BufferedImage; //Object>awt.Image>awt.image.BufferedImage
    `import java.awt.Graphics; //Object>awt.Graphics
    `import java.awt.Graphics2D; //Object>awt.Graphics>Graphics2D
    `import java.awt.Color;
    `import java.awt.BasicStroke;
    `public class TstBgCol { //frame & BufferedImage in pixels & BasicStroke in points ????????????
    ` TstBgCol tstBgCol;
    ` public static void main(String[] args) {
    ` TstBgCol tstBgCol=new TstBgCol(); tstBgCol.tstBgCol=tstBgCol;
    ` tstBgCol.main2(); tstBgCol.byteBinary();
    ` }
    ` Graphics fgcontext;
    ` Frame fram; Insets insets; //borders of the Frame, Container.getInsets
    ` int bIWid=1272,bIHgt=876; //set for 1280x1024 screen on windows XP & matches paper ratio 10.6x7.3
    ` int unusedPixHgt=84;
    ` void main2() {
    ` fram=new Frame();
    ` fram.addWindowListener(new java.awt.event.WindowAdapter() { //anonymous inner class
    ` public void windowClosing(java.awt.event.WindowEvent e) { System.exit(0); }
    ` });
    ` fram.setVisible(true);
    ` insets=fram.getInsets(); //(Container)getInsets() works after displayable
    ` System.out.println("Insets l,t,r,b:"+insets.left+","+insets.top+","+insets.right+","+insets.bottom);
    ` fram.setSize(insets.left+bIWid+insets.right,insets.top+bIHgt+unusedPixHgt+insets.bottom);
    ` fgcontext=fram.getGraphics(); //creates Graphics context for this component
    ` }
    ` void byteBinary() {
    ` BufferedImage buIm=new BufferedImage(bIWid,bIHgt,BufferedImage.TYPE_BYTE_BINARY); //can be resized
    ` Graphics2D bIG2=buIm.createGraphics(); //returns Graphics2D context
    ` //change to if(true) to use either of the following two lines
    ` if(false) bIG2.setBackground(Color.white); //does not change the background color to white
    ` if(false) bIG2.setColor(Color.black); //does change the foreground color to black
    ` edgeLinesAndX(buIm,bIG2);
    ` fgcontext.drawImage(buIm,insets.left,insets.top,fram);
    ` }
    ` private void edgeLinesAndX(BufferedImage bI,Graphics2D bIG2) { //really on the edge
    `      BasicStroke strk=new BasicStroke(10f); bIG2.setStroke(strk);
    ` int x0,y0,xmx,ymx;
    ` x0=bI.getMinX(); y0=bI.getMinY(); xmx=bI.getWidth()-1; ymx=bI.getHeight()-1;
    ` bIG2.drawLine(x0+xmx,y0,x0,y0+ymx); //lo-left to up-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0+ymx); //up-left to lo-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0); //up-left to up-right
    ` bIG2.drawLine(x0,y0,x0,y0+ymx); //up-left to lo-left
    ` bIG2.drawLine(x0,y0+ymx,x0+xmx,y0+ymx); //lo-left to lo-right
    ` bIG2.drawLine(x0+xmx,y0,x0+xmx,y0+ymx); //up-right to lo-right
    ` bIG2.drawString("("+x0+","+y0+") wid="+(xmx+1)+" hgt="+(ymx+1),(xmx+1)/5,(ymx+1)/5);
    ` }
    `} //the result on my screen is a black background, why?????

    How do I get a white background with black lines and characters on
    my screen.Contrary to what you might think, the linebIG2.setBackground(Color.white);does not give the buffered image a white background. The API docs
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Graphics2D.html#setBackground(java.awt.Color)
    say: "Setting the background color in the Graphics2D context only
    affects the subsequent clearRect calls... " So adding a line to your
    if blocks we getif (false) {
        bIG2.setBackground(Color.white);
        bIG2.clearRect(0, 0, buIm.getWidth(), buIm.getHeight());
    if (false) {
        bIG2.setColor(Color.black);                    
    }Changing the false to true results in a white background (and black
    X and text).

  • How do I get a transparent background on the down level stage?

    How do I get a transparent background on the down level stage?

    I haven't tested this, but in your xxx_edge.js file, it looks like the stage background color is set here:
    states: {
          "Base State": {
             "${_Stage}": [
                ["color", "background-color", 'rgba(255,255,255,1)'],
                ["style", "overflow", 'hidden'],
                ["style", "height", '400px'],
                ["style", "width", '550px']
    Try changing the last value in the rgba value from 1 to 0.
    Let us know how it goes!

  • Getting current terminal background color

    is there any way to retrieve the current background color in the active terminal (xterm/konsole/whatever)? preferably in c.
    tnx.

    in C it wouldn't be that hard, however it gets difficult when you talk about different WMs...
    Basically, you iterate over each top level window (the frame)... but you'd need a way to determin which child of the fram is the application (the title bar, buttons, and possibly status bar are all children as well).
    Then you just call a "property get" on the app window...
    the main difficulty is going to be different window managers...

  • How can I create an alt background color for items in a jlistbox or jtree

    What I'm looking to do is have a white background for say items 1,3,5, etc. and a light yellow background for items 2,4,6, etc. I was wondering how can I set an alternative background color on items in a JTree or a JList

    Use a cell renderer:
    import java.awt.*;
    import javax.swing.*;
    public class ListAlternating extends JFrame
         public ListAlternating()
              String[] items = {"one", "two", "three", "four", "five", "six", "seven"};
              JList list = new JList( items );
              list.setVisibleRowCount(5);
              list.setCellRenderer( new MyCellRenderer() );
              JScrollPane scrollPane = new JScrollPane( list );
              getContentPane().add( scrollPane );
         public static void main(String[] args)
              ListAlternating frame = new ListAlternating();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setLocationRelativeTo( null );
              frame.setVisible( true );
         class MyCellRenderer extends DefaultListCellRenderer
              public Component getListCellRendererComponent(
                   JList list, Object value, int index, boolean isSelected, boolean cellHasFocus)
                   super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
                   if (!isSelected)
                        setBackground(index % 2 == 0 ? list.getBackground() : Color.LIGHT_GRAY);
                   return this;
    }

Maybe you are looking for

  • Attribute binding value not refreshed after transaction rollback

    Hi, Using ADF Faces/Trinidad + ADF Data Bindings + ADF Business Components. I was experimenting with task flows vs transaction control vs form validation and met the following problem. First, here's a little intro to my application design. A page tem

  • Limit Mac Mini to 5 Ghz Wireless

    I have an Airport Extreme Dual Band with the Access Point set to one name on both bands. There are a number of 802.11n devices connected happily and a 2008 spec mac mini which has an a/b/g card and iphones which have to connect to the b/g network. I'

  • Which method is invoked everytime a row in invoked

    Hi all, I have a Table that is having the Code of the LOV field that is stored in the database. I have just drag and drop the Fields from the View Objects to my jspx page. So that it is displaying only the code of the LOV field. But i need to display

  • I subscribed to Creative Cloud and i don't know what to do with it?

    How do I start creating a website and does adobe offer any technical support?

  • Testing Lead Time Scenario

    Hi gurus, I'm after some suggestions as to how to configure the following scenario in our make to stock PP-PI environment. Our process orders have a standard production rate for production of a batch of pieces.  I.e. 600 pc per hour.  The pieces are