Changing navi bar border color

Hello, I need to change the border of my navi bar on the left
hand side. I do not want the grey but a red and cannot figure out
which part of the menu bar to change... You can see this
goldenagecheese.com/newsitepages
Thanks if someone can help me put the last finishing touches
on my site it would be greatly appreciated!!!
Also please check my site out and give me any suggestions for
my site that would make it nicer.
Thanks!!

Hello,
You have another rule over-riding the one Ken pointed out.
So, as Ken said, adjust the border color here:
/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
border: 3px solid #FF0000;
Then, get rid of the border color in this rule so it doesn't
over-ride the
red with gray:
ul.MenuBarVertical
margin: 0;
list-style-type: none;
font-size: 100%;
cursor: default;
width: 10em;
padding: 0;
font-weight: bold;
border-color: #660000; <<<<<<<<
Delete this
I'm sorry to point this out, but have you looked at the site
with the
browser's text size setting 1 level higher than what your
browser was when
you designed it? It's severely broken and illegible in parts,
especially
around the form.
Here's a screen shot from FireFox:
http://tnsgraphics.com/chtext.htm
This is because of the numerous APDivs (a.k.a Layers) which
cause this
problem when used as a layout tool.
More info about the problem and the fix:
http://apptools.com/examples/pagelayout101.php
Take care,
Tim

Similar Messages

  • How do I change an image border color to another color - Dreamweaver CS5?

    Good day,
    I have just learned how to add a border to an image with Dreamweaver CS5 within the Properties Inspector.
    After typing the width in pixels in the Border Text Field and pressing the Enter key, Dreamweaver created a black border.
    How do I change the image border color to another color?

    I added your suggested rule to the Style Sheet "in any order" as you explained. See the image below.
    However this did not change the image border from black to light blue. In fact, nothing changed.
    Nothing changed because the CSS that has been written into DW is incorrectly written.
    You want the following (exactly as written below)
    img {border: 4px solid #0062C8;}
    You've inadvertently wrapped the rule inside a #main_image container rendering it meaningless.
    It's easiest to go into Code View and change
    #main_image {
         img {border: 4px solid #0062C8;
    to
    img { border: 4px solid #0062C8; }
    The Property Inspector added a border exactly as I wanted it, other than the color I wanted the border to be. What is the use of this function in Property Inspector if it can add a border within Property Inspector but not let me change the COLOR of the black border that Property Inspector added, to another color?
    That's a deceptively simple, yet valid, question with a long answer.
    Back in the dark old days of web design web designers were restricted to inline HTML formatting which offered  border properties but no colors.
    CSS styling offers colors and more but has to be written differently.
    These days. it's best to avoid HTML formatting. Unfortunately border="4px" in the PI still allows it. But does not permit color.
    Does anyone else out there ever add color borders to their IMAGES (not the containing box for the image) ?
    Yes, using CSS.

  • Change the bar graph color

    Hi
    Is it possible to change the bar graph color? I want the first bar to be green, second to be red, thrird to be orange and fourth to be gray.
    Is there anywhere to specify the color?
    Thanks

    Did you find the Fusion 11g Web Guide section 23.5.1 any help?:
    http://download.oracle.com/docs/cd/E12839_01/web.1111/b31973/dv_graph.htm#sthref410
    CM.

  • Change frame's border color in JFrame

    How can I change border color of frame?
    I mean a border that contains title of frame.
    Thanks.

    You can do this, although I think the outcome is terrible:
    JFrame.setDefaultLookAndFeelDecorated(true);
    UIManager.put("activeCaption", Color.RED);
    JFrame frame = new JFrame();

  • Change required field border color

    I have acro form created by Adobe 9 pro with required text field in it. The default border color for required field is red. Can I change it without javascript ?

    Can I with javascript override the default color of the required field which is set in the category Forms of the Acrobat preferences ?

  • How do I change navigation bar text color?

    I want to change the color of the type in the navigation bar, as well as the line/bar below the type. How can I do this?

    there are many way to change navbar look-and-feel:
    1) by changing template XML, this requires XML knowledge and is a complex process.
    2) by changing navbar CSS in page source, this a bit easier but requires post editing.
    http://discussions.apple.com/thread.jspa?messageID=5186688&#5186688
    3) by javascript, this requires CSS and javascript knowledge:
    http://discussions.apple.com/thread.jspa?messageID=8638743&#8638743
    4) by manually build your own navbar as roddy and ot mentioned, this requires no knowledge of any kind but it is not very efficient; see my post here:
    http://discussions.apple.com/thread.jspa?messageID=8136472&#8136472
    5) by AJAX, this requires CSS, javascript and AJAX knowledge; I outlined it in my blog here:
    http://www.cyclosaurus.com/Home/CyclosaurusBlog/Entries/2009/9/10iWeb_NavBarWidget.html

  • Just upgraded to firefox8. Now navigation bar opens everything in google. How do I change nav bar to firefox?

    I just upgraded firefox. Now when it type an address into the navigation bar it goes to a google page instead of going straight to that website. How can I change this?

    You can modify the pref <b>keyword.URL</b> on the <b>about:config</b> page to use Google's "I'm Feeling Lucky" or Google's "Browse By Name".
    * Google "I'm Feeling Lucky": http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=
    * Google "Browse by Name": http://www.google.com/search?ie=UTF-8&sourceid=navclient&gfns=1&q=
    * http://kb.mozillazine.org/keyword.URL
    * http://kb.mozillazine.org/Location_Bar_search
    *http://kb.mozillazine.org/about:config

  • How i can change bar chart color in runtime??

    i have a bar chart with red as a default color.
    <mx:BarSeries
    id="progressBar"
    yField="Task_Name"
    minField="Start_Date"
    xField="Progress_Date"
    displayName="Progress"
    >
    <mx:fill>
    <mx:SolidColor id="progressColor" color="red"/>
    </mx:fill>
    i want to give the user the option to change the color. i
    used the following code:
    progressColor.color = colorChooser.selectedColor;
    colorChooser is color picker components.
    but that doesn't work. it doesn't change the color. it just
    changes the tooltip border color of the bar chart.
    please help
    thanks

    hi Shafr
    beleive it or not, i got it using trial and error. i keep
    trying words in the function setStyle until the color changed. i
    dont know why it is not documented.
    var periodBarColor:SolidColor = new
    SolidColor(taskSchedColorChooser.selectedColor, 1);
    periodBar.setStyle("fill",periodBarColor);
    //where taskSchedColorChooser is colorPicker component. you
    can replace it by any color you want

  • Changing shape border color

    I'm working with Photoshop Elements 6
    I've created a round rectangle. I want the shape to be black with a white border. However whenever I finalize and save, my white border disappears and I'm just left with a black shape. Edit > Stroke is'nt highlighted, and for the life of me I can't figure out how to change it.
    Whenever I change the colors from black and white I dont seem to have this problem. How can I change/modify the BORDER COLOR of my shapes?

    Steve,
    1. Simplify the shape layer, and Edit>stroke will be available
    2. CTRL+left click the shape layer in the layers palette - should see marching ants
    3. Edit>stroke - ?outside
    4. If your background is white, you will not see the white of the stroke - need contrast
    http://www.pixentral.com/show.php?picture=1VIYN3bamn2z7lD5GsLsYAeYK0qJU1
    Let us know how you make out.
    Ken

  • Select List border color ?

    Hi,
    Is there a way to change the Select List border color (Drop down list) ? I tried to add some style in the HTML element attribute without success.
    Thank you.

    See
    http://p2p.wrox.com/topic.asp?TOPIC_ID=21626
    Doesnt seem like you can change either the border color or the style of the "arrow" on the select list
    You can style the individual options, see an example at
    http://htmldb.oracle.com/pls/otn/f?p=24317:104
    Hope this helps.

  • Border color when selecting field

    Post Author: RicoDeJong
    CA Forum: General
    Hi,
    When selecting a field in CR11 it doesn't come with a changed border color.
    On a different PC it does. Don't know where this configuration parameter is set?
    Anyone?

    Thanks Bibhu;
    The suggestion did not work that well but it did give me an idea. I used the code below in the "exit" event and I was able to change the the border color.
    switch (this.rawValue)
    case "1":
        this.font.fill.color.value = "0,0,0";
        this.border.fill.color.value= "255,255,255";
    Thanks Again Bibhu

  • Replacing nav bar--is there a way to change all pages at once?

    I widened my site off of an iweb template and now the nav bar looks bad since it's too narrow and there is text that appears outside of the nav bar background. Since I can't change the color or looks of the nav bar, I've decided to put my own on top of it. This means if I have any changes down the line, I have to change the nav bar on every page. I have a page that nothing is linked to where I save graphic elements, so I can copy it, and paste on each page--a hassle when you have 50+ pages, and no idea how many pages I'll have in the end. IT was nice to have the automatic nav bar and header/footer, but boy how stupid to not be able to edit them unless you're a tech geek and understand all the coding!!

    a hassle when you have 50+ pages
    You should try it when you have 170+ pages!
    No, there is no simple way to change all pages at once. I use exactly the same method as you are doing now. Having proper user definable templates is on my wish list for future releases of iWeb.
    Michael
    iMac 20" Intel Core Duo 2GHz

  • Coloring email link differently from nav bar links

    Hi: Please go to tedandada.com. Click on "contact us" on menu on the left. On the "contact us" page you will see two email addresses. They are black. I would like them to be red before they are even rolled over or clicked to open an email program.
    How can I color them? I noticed that I can select and color ordinary text but I cannot select and color the email addresses because they are links.
    I do not want to change the way the links work in the nav bar. I want them to stay as they are.
    Thanks.
    S

    Kath and Murray:
    Kath wrote:
    How right you are Kath.
    May I suggest something? I will do HTML tutorials at this site:
    http://www.w3schools.com/default.asp
    So -- Murray and Kath -- I am not stubborn. (Okay, I am stubborn --- but I am not hopelessly stubborn). Also I like to learn new things.
    BUT - I would still like you to walk me through this one thing I want to do one step at a time - using the knobs and dials. In the meantime, I will do the HTML tutorials -- but obviously it is going to take me time to get the hang of it. So please humor me in the meantime.
    All I want in response to this post is the FIRST STEP. After I do that, I will write again for the second step.
    MY object is to color the links which automatically open a mail program: "[email protected]" and "[email protected]"- on the "Contact Us" page on the tedandada.com site ---- without affecting the behaviour of the links in the nav bar.
    I just want these links blue. I am not interested in hover or visited effects for these two links. (Perhaps these are not even called links - as they perform an action of opening the users mail program rather than linking to a place on my site or an external site).
    Okay so far -- I hope.
    Step 1: I open the page "contact us" on tedandada.com
    Step 2: Here it seems I have four choices to start with (using the knobs and dials)
    a: I can open "External CSS" in the head section of the "contact us page."
    b: I can open "page properties" on the "contact us" page
    c: I can click on the "open CSS editor" in the upper right corner of the contact us window.
    d: I can select the links I want to color and open the CSS palette.
    So --- Which of the four choices above (a, b, c or d do I do first?)
    Let's just start here. OK?
    In the meantime, I AM taking both of your advice to learn some HTML - by doing the tutorials --- but until I get a handle on it, please bear with me and help me the bells and whistles way.
    Thanks for your help and patience.

  • I have 5 html pages that share a common header, footer, and sidebar. how do i use my nav bar to change the content of the body without duplicating a lot of code?

    i have 5 html pages that share a common header, footer, and sidebar. how do i use my nav bar to change the content of the body without duplicating a lot of code? thank you!

    i inherited the website. It’s for a non-profit and is not very
    sophisticated, and neither am I in webdesign. It currently has multiple
    pages that are identical except for that body section, so whenever i change
    the navigation (in the sidebar) I have to update every html page.  I want
    to have one basic page, and just call in the different body content based
    on the link the user selects from the nav bar. How can i do that using a
    script? i am using Dreamweaver.
    ~ in love and light ~
    Jeannie
    On Sat, Feb 7, 2015 at 4:07 AM, Ben Pleysier <[email protected]>

  • How we can change JFrame Border Color Not Background.

    How we change jframe border color not background
    if any body know about that then plz tell me
    at this [email protected]
    i m thanksfull to ..... .

    hi Shafr
    beleive it or not, i got it using trial and error. i keep
    trying words in the function setStyle until the color changed. i
    dont know why it is not documented.
    var periodBarColor:SolidColor = new
    SolidColor(taskSchedColorChooser.selectedColor, 1);
    periodBar.setStyle("fill",periodBarColor);
    //where taskSchedColorChooser is colorPicker component. you
    can replace it by any color you want

Maybe you are looking for

  • Problem when creating a Report with a schduled date

    When I tried to create a report with a Schedule (any option except NOW) I get the error of "First Report Occur Date should be after or equal to Current Date" unless I use a date of 2012-10-01 or later in the First report occurs on field.  Today's dat

  • QT pro (7.1.5) BUG - BWF problem

    After beating my head against a wall trying to open BWF audio files in FCP 5.1.4, I found that the BWFImporter.compnent (HD/library/quicktime/BWFImporter.component) will not play BWF files that are NOT recorded with timecode. Several professional fie

  • Itouch doesn't show up in Itunes

    My 1st gen Itouch (software version 2.2.1) doesn't show up when I'm running Itunes (9.1) on an Imac (10.6.3). It "beeps" when I plug in the USB cable and the Itouch states that it is charging but the Itouch doesn't show up as a device in Itunes. When

  • Inkscape latex symbols

    I am having issues creating latex symbols in inkscape. I get the following error; Traceback (most recent call last): File "eqtexsvg.py", line 157, in <module> e.affect() File "/usr/share/inkscape/extensions/inkex.py", line 215, in affect self.effect(

  • Download Formatting Mask for BLOB column

    Hi All, IR Query : select "ROWID","FILE_NAME",dbms_lob.getlength("DATA_FILE") "DATA_FILE", "DOC_SIZE",PROPOSAL_OWNER from "#OWNER#"."APXTER_IMP_HDR" I am using BLOB Download Format Mask on FILE_NAME column using the following FORMATTING DOWNLOAD:APXT