Modify CSS in region help

Hi, I am using a region help type following the instructions in APEX Users Guide.
But the code generated by APEX has 2 issues:
It hasn't CSS (bgcolor hardcoded):
<table bgcolor="#CCCCCC" width="100%"><tr><td><b>Region</b>:  Acciones Generals</td>...
For every region the page helped, it generates a table with the text "Region", and I have the APEX in Spanish but "Region is not spanish".
<table bgcolor="#CCCCCC" width="100%"><tr><td><b>Region</b>:  Acciones Generals</td> ...
Which would be the solution for change the CSS and the "Region" text?
Thanks.

You owe it to yourself and your employer to learn HTML & CSS fundamentals before you monkey around with the company web site. 
          http://w3schools.com/
Start by validating your code and fix reported errors.  You have an extra closing </div> that doesn't belong.  Also, ID names are unique identifiers.  They can be used only one time per page. 
          http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.hrserase.com%2Fjobs.html
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com/

Similar Messages

  • HT1222 I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I got it figured out myself... yaaaaay for me!

  • Modifying a template resulted in all child pages with repeating editable regions - Help !

    Good morning,
    I have recently been appointed to update a website designed in Dreamweaver by an employee who is no longer here. I have read books on the software and practiced an insane amount which permitted me to update child pages, links, documents etc... however:
    I was asked to add a new button to an "non-editable" region of a template. Trying to do so resulted in a massive mess (with massive anxiety).
    Even thou the new template had all the same text and editable regions, all my pages look completely different from the template itself. The editable regions appears 2-3 times in different locations ex: Header is showed on the bottom, top etc... and the Editable region titles (EditableRegion1 etc...) repeat themselves as well.
    I really need help and not sure what to do, I have tried everything and I am only making it worse and worse. All I want/need is for all my html pages created with this template, match the template.
    Please note that this site is local, not online.
    Since I noticed on other threads that the code is needed; here it is:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>QMS: AFM</title>
    <style type="text/css">
    <!--
    body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #666666;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    background-color: #D7D7D7;
    background-repeat: repeat-x;
    border-top-color: #066;
    border-right-color: #066;
    border-bottom-color: #066;
    border-left-color: #066;
    /* Tips for Elastic layouts
    1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
    2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
    3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
    .twoColElsLtHdr #container {
    width: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
    background: #FFFFFF;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: 30px none #C4C4C4;
    text-align: left; /* this overrides the text-align: center on the body element. */
    padding-left: 10px;
    background-color: #FFF;
    border-top-color: #C4C4C4;
    border-right-color: #C4C4C4;
    border-bottom-color: #C4C4C4;
    border-bottom-style: outset;
    border-left-style: outset;
    border-top-width: thick;
    border-right-style: outset;
    border-top-style: outset;
    border-left-color: #C4C4C4;
    border-right-width: thick;
    border-bottom-width: thick;
    border-left-width: thick;
    .twoColElsLtHdr #header {
    padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    background-color: #FFF;
    .twoColElsLtHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    /* Tips for sidebar1:
    1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
    2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.
    3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
    .twoColElsLtHdr #sidebar1 {
    float: left;
    width: 12em; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 0; /* top and bottom padding create visual space within this div */
    background-color: #066;
    background-repeat: repeat-x;
    border-top-width: thin;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-right-width: thin;
    border-bottom-width: thin;
    border-left-width: thin;
    color: #FFF;
    padding-left: 0px;
    clear: left;
    .twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
    margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
    margin-right: 10px;
    background-color: #066;
    text-decoration: inherit;
    /* Tips for mainContent:
    1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
    2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
    3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
    4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
    .twoColElsLtHdr #mainContent {
    margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
    color:#069;
    background-color:#FFF;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    .twoColElsLtHdr #mainContent a:link {
    text-decoration: none;
    color: #069;
    .twoColElsLtHdr #mainContent a:visited {
    text-decoration: none;
    color: #069;
    .twoColElsLtHdr #mainContent a:hover {
    text-decoration: underline;
    color: #069;
    background-color:#FFF
    .twoColElsLtHdr #mainContent a:active {
    text-decoration: none;
    color: #069;
    .twoColElsLtHdr #footer {
    padding: 0 10px;
    line-height: 0pt;
    color: #069;
    background-color: #FFF;
    font-size: 10px;
    .twoColElsLtHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    background-color: #FFF;
    /* Miscellaneous classes for reuse */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    h1 {
    color: #069;
    font-size: 16px;
    border-top-color: #069;
    border-top-width: thin;
    border-right-width: thin;
    padding-right: 0px;
    padding-left: 0px;
    body,td,th {
    font-family: verdana;
    text-decoration: none;
    color: #069;
    border-top-color: #069;
    border-right-color: #069;
    border-bottom-color: #069;
    border-left-color: #069;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-width: thin;
    border-right-width: thin;
    border-bottom-width: thin;
    border-left-width: thin;
    a:link {
    text-decoration: none;
    color: #FFF;
    a:visited {
    text-decoration: none;
    color: #FFF;
    a:hover {
    text-decoration: underline;
    color: #FFF;
    background-color: #;
    background-repeat: repeat-x;
    background-position: center;
    border-top-color: #069;
    border-right-color: #069;
    border-bottom-color: #069;
    border-left-color: #069;
    a:active {
    text-decoration: none;
    color: #FFF;
    border-color: #FFF;
    padding-left: 20px;
    -->
    </style><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColElsLtHdr #sidebar1 { padding-top: 30px; }
    .twoColElsLtHdr #mainContent { zoom: 1; padding-top: 15px; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <link href="file:///U|/AFM/Dreamweaver/Left sidebar.css" rel="stylesheet" type="text/css" />
    </head>
    <body link="#006699" class="twoColElsLtHdr">
    <div id="container">
    <div id="header">
        <h1><img src="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Graphics/menubar/pwgsc-e.gif" width="364" height="33" align="left" alt="wordmark" /><img src="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Graphics/menubar/wordmark_canada.gif" width="83" height="21" align="right" alt="wordmark2" /></h1>
        <p> </p>
        <p><img src="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Graphics/menubar/AFM QMS banner.jpg" width="709" height="80" alt="banner" border="0"/><a href="mailto:[email protected]"><img src="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Graphics/menubar/Contactus-e.JPG" width="110" height="21" alt="contactus-e" border="0" /></a><img src="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Graphics/menubar/French-e.JPG" width="115" height="21" alt="french-e" border="0" /> <a href="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Continual Improvement/QMSTeamMembers-e.html"><img src="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Graphics/menubar/Help-e.JPG" width="115" height="21" alt="help-e" border="0" /> <img src="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Graphics/menubar/Search-e.JPG" width="115" height="21" alt="search-e" border="0" /></a><a href="http://source.tpsgc-pwgsc.gc.ca"><img src="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Graphics/menubar/thesource.jpg" width="120" height="21" alt="TheSource" border="0" /> <img src="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/Graphics/menubar/Home-e.jpg" width="104" height="21" alt="home-e" border="0" /></a></p>
        <p> </p>
      </div>
    <div class="twoColElsLtHdr" id="sidebar1">
        <p><a href="../QMS HOME/QMSHome-e.html"><strong>QMS Home</strong></a></p>
        <hr />
        <p><a href="../ABOUTAFM/AboutAFM-e.html"><strong>About AFM</strong></a></p>
    <hr />
    <p><a href="../AdminProcedures/AdminProcedure-e.html"><strong>Administrative Procedures</strong></a></p>
    <hr />
    <p><a href="../BusinessUnits/BusinessUnits-e.html"><strong>Business Units</strong></a></p>
    <hr />
    <p><a href="../POINTSOFINTEREST/pointsofinterest-e.html"><strong>Points Of Interest</strong></a></p>
    <hr />
    <p><a href="../Achievements/Achievements-e.html"><strong>Achievements</strong></a></p>
    <hr />
    <p><strong><a href="../MeasuringPerformance/measuringperformance-e.html">Measuring Performance</a></strong></p>
    <hr />
    <p><a href="../References/references-e.html"><strong>References</strong></a></p>
    <hr />
    <p><a href="file:///P|/RPS/AFMS/Quality Management System/QMS Site/HTML/ContinualImprovement-e.html"><strong>Continual Improvement</strong> </a></p>
    </div>
    <div id="mainContent">
        <h2>Header</h2>
        <p>Paragraph</p>
        <h1>Sub Header </h1>
        <p> </p>
        <h1> </h1>
        <h2> </h2>
        <h1> </h1>
        <p> </p>
        <h2> </h2>
        <!-- end #mainContent -->
      </div>
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
           <br class="clearfloat" />
      </p>
      <div id="footer">
        <hr width="100%" size="8" noshade="noshade" color="#006666" id="color=&quot;069&quot;" colour="#069"/>
        <p><strong>Maintainted by: ASQM </strong></p>
        <p><strong>Date Modified: 2013-03-25</strong></p>
        <!-- end #footer -->
      </div>
      <script type="text/javascript">
    <!--
    //-->
    </script>
      </h3>
        <!-- end #container -->
    </h3>
    </div>
    <script type="text/javascript">
    <!--
    //-->
    </script>
    </body>
    </html>

    I am not suprised, the previous employee tried to recreate the English version of the site in another folder structure and did not change all links and was still using a template in the wrong location.
    I think I created the mess by trying to modify the existing template's non-editable region in order to add a new button. When trying to update all the pages, the fiasco started.
    Do you think the best option would be to create a new template in the correct folder structure and apply it? Would it fix the current pages or will I have to fix them all manualy on by one?
    I understand it is difficult to deal with a newbie of my magnitude and thanks again.

  • Adobe creative Cloud photshop cs 6 register user iam not getting COPY CSS options please help

    iam adobe creative cloud photshop cs 6 register user iam not getting COPY CSS options even i have updated photoshop several times
    still not getting this options please help
    Thanks
    Koushik

    13.0.1 is the last version of Photoshop to run on Windows XP but it does not include the Copy CSS feature.
    The Copy CSS feature was first introduced in Photoshop 13.1 (Cloud only) and higher.
    http://blogs.adobe.com/jkost/2013/02/copy-css-attributes-in-photoshop-13-1.html
    Photoshop 13.1 does not run on Windows XP. So your operating system is preventing you from upgrading Photoshop to 13.1+.
    http://helpx.adobe.com/photoshop/kb/new-system-requirements-photoshop-131.html
    If you plan to remain a Cloud member then you will have to upgrade to Windows 7 or Windows 8 (or get a new computer) very soon in order to run Photoshop CC to be released on June 17, 2013.

  • Problem with editing Editable Region - HELP!

    My website is www.yucholian.com
    I have created a template and have assigned a main body to be
    an Editable Region. However, I can't seem to use different fonts,
    sizes or styles as I wish. If I go to Text drop down, go to size,
    all options are greyed out. Can anyone help?
    BTW, I'm using 30 day trial.
    I find Dreamweaver to be very finicky. Even something simple
    as applying a template that I created, view doesn't update, showing
    doubles...
    Thanks in advance.

    > I find Dreamweaver to be very finicky. Even something
    simple as applying
    > a
    > template that I created, view doesn't update, showing
    doubles...
    The more you know about HTML, the less you will run into such
    things - but I
    have to say, I have no idea what you are describing here. It
    sounds to me
    like user error, but I can't say for sure.
    > However, I can't seem to use different fonts, sizes or
    styles as I
    > wish.
    Show me your template, tell me what you are trying to change,
    and I'll
    explain to you what is happening.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "yucholian" <[email protected]> wrote in
    message
    news:edk7lr$73m$[email protected]..
    > My website is www.yucholian.com
    > I have created a template and have assigned a main body
    to be an Editable
    > Region. However, I can't seem to use different fonts,
    sizes or styles as
    > I
    > wish. If I go to Text drop down, go to size, all options
    are greyed out.
    > Can
    > anyone help?
    > BTW, I'm using 30 day trial.
    > I find Dreamweaver to be very finicky. Even something
    simple as applying
    > a
    > template that I created, view doesn't update, showing
    doubles...
    >
    > Thanks in advance.
    >

  • CSS columns - Please Help!

    I have beaten my brains trying to get a third column to
    display correctly. After rereading several tutorials and helps in
    Dev Center, I am still stumped! Can you take a look at my code here
    http://www.mlundy.net/tigerswrestlingnew/lsTigersTemplate.html
    - CSS file is
    http://www.mlundy.net/tigerswrestlingnew/css/lsWrestling.css
    The "sponsors" div will not align with the top of "headlines"
    and "content" divs. Thanks so much for any help.
    Mark

    Hi Mark --
    Rather than using such huge margins (536 px for #sponsors!)
    try this layout.
    It's basically the same structure as your page.
    Hope this helps.
    John
    <style type="text/css">
    body {
    font-family: verdana, "Trebuchet MS", Arial;
    margin-top: 30px;
    text-align: center;
    font-size: 100%;
    margin-bottom: 20px;
    background-color: #97895e;
    h1 {
    font: bold normal 15px Arial, Helvetica, sans-serif;
    color: #b3060c;
    text-align: left;
    margin: 0px;
    padding: 0px;
    h2 {
    color: #b3060c;
    text-align: left;
    margin-bottom: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    h3 {
    color: #b3060c;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 90%;
    margin-top: 5px;
    margin-bottom: 2px;
    padding-top: 3px;
    h4 {
    color: #b3060c;
    text-align: left;
    font-size: 80%;
    margin-top: 7px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-weight: bold;
    padding: 0px;
    p {
    color: #000000;
    text-align: left;
    margin: 0px 0px 0px 1px;
    padding: 5px 0px 0px;
    font-size: 80%;
    #wrapper {
    position: relative;
    padding: 0px;
    width: 760px;
    background-color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    background-repeat: no-repeat;
    background-position: left top;
    #header {
    background-image: url(../assets/page_elements/header.gif);
    background-repeat: no-repeat;
    height: 106px;
    background-position: right;
    #content {
    float: right;
    width: 350px;
    margin-left: 32px;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #000000;
    padding-right: 5px;
    margin-top: 15px;
    #leftsidebar {
    float: left;
    width: 182px;
    margin-top: 15px;
    #leftsidebar h2 {
    font: bolder 10pt Arial, Helvetica, sans-serif;
    color: #b3060c;
    text-align: left;
    padding-left: 20px;
    #rightsidebar {
    float: right;
    width: 172px;
    margin-top: 15px;
    margin-left: 10px;
    padding-right: 5px;
    #rightsidebar p {
    font-size: 70%;
    #rightsidebar h2 {
    color: #b3060c;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    .clearer {
    clear:both;
    height: 1px;
    overflow: hidden;
    line-height: 1px;
    margin-top:-1px;
    background-color: #97895e;
    #footer {
    background-color: #FFFFFF;
    background-image:
    url(../assets/page_elements/arch_bottom.gif);
    background-repeat: no-repeat;
    height: 30px;
    #bottomnav {
    background: #97895e;
    color: #544324;
    text-align: center;
    font-size: 70%;
    padding: 15px;
    #bottomnav p {
    color: #544324;
    text-align: center;
    font-size: 85%;
    </style>
    </head>
    <body>
    <div id="wrapper">
    <div id="header">
    </div>
    <!--end header DIV -->
    <div id="leftsidebar">
    <h2>#leftsidebar DIV </h2>
    </div><!--end leftsidebar DIV -->
    <div id="rightsidebar"style="padding-bottom: 20px;">
    <h2>#rightsidebar DIV </h2>
    </div>
    <!--end rightsidebar DIV -->
    <div id="content">
    <h2>#content DIV </h2>
    </div>
    <!--end content DIV -->
    <br style="clear:both;"/>
    <div id="footer"></div><!--end footer DIV
    -->
    <div id="bottomnav"><p>Bottom navigation and
    copyright notice</p>
    </div><!--end bottomnav DIV -->
    </div><!--end wrapper DIV -->
    </body>
    </html>

  • Modify Report in po help

    Hi Gurus
    Need to modify report:
    Printed Purchase Order Report(Portrait)
    POXPRPOP
    User want to print PO's greater then $2,500 only
    or can give option's ALL or > 2,500. Any help Thanks in advance
    [email protected]

    There exists a standard Oracle Report "Purchase Order Detail Report". This reports details the PO along with the information on Quantity/Amount Due and Billed.
    Please check if you can use it effecitvely to your use.

  • How to modify a VO? Help please

    I am trying to modify a VO in sales (just have to change the where clause), went thru the tutorial but 'am not sure if I am doing it right.
    Do I have to export the complete full java_top to my machine and then modify the VO?
    Can somebody please give me a 4-5 step process on customizing an existing VO?

    i agree with some of your earlier comments about the notes not been of much help and the course lacking some information. It has taken me almost 9 days to get one to work through a lot of trial and error and a lack of clear details.
    Here are some of the steps (and I am more than happy for anyone to clear these up or add to them!)
    Create a project in Jdev
    sent FND: Diagnostics to yes for your user
    sign into the application that you want to change and go to the page that you want to change.
    At the bottom of the page you will see an about this page link, click on the link.
    THis will open up the page to show the different objects within the page.
    download the BC4J (including the CO/EO objects) components into your <JDEV_HOME>/myclasses using the EXACT same directory structure created on your PC as the one on your apps server.
    Copy the WEBUI items to myprojects using the same directory structure as on the server
    Exapnd all the items on the page and find the item that you want to change which should be linked to a VO. If you click on the VO it should give you something link oracle.apps.icx.etc.etc.
    go to JAVA_TOP on your apps tier and download this file to the correct directory structure. As these files are a mix of class and xml files copy them all to your PC.
    You will have to decompile the class file to get java files (Jad is s good tool to do this). Copy the java files to your project directory.
    You will then have to import these files into your project using File-->Import.
    Hopefully this is a good start.

  • Ahhhhhh!!! I'm going to kill editable regions, help!!

    Why the heck is this happening ... I've searched the code very thoroughly ... every time I attempt to make a new editable region for the background image for my header (Welcome to Prodigy Piano Studios) , every thing I try it just says:
    "This area is already part of an editable, repeating, or optional region"
    So why isn't dreamTAKER allowing me to switch out the background image for my other pages?
    http://www.prodigypianostudios.com
    Each banner photo up top is a specific color ... and I need to switch out the background for the middle part of the body for a gradient image to match the banner color. 
    Please help!!
    Thanks!!

    I don't know much about DW templates but checking your page in the validator shows this going on:
    <td width="960" height="120" td>
    It doesn't like that and I supose there's a chance that the problem in there (the rougue td at the end) is screwing your tags.
    Martin

  • Modifying selection screen with help of radio buttons

    Hi,
      In my program am using three parameters to download a three different files and I have to use radiobuttons for that.
    I want to download only one file at a time.
    I have used MODIF ID but it is not working for 3 Parameters but it is working for only two parameters.
    Please help me out!!!!!!!!!

    Hi,
    check with the following code
    * Parameters and Selection Options
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_lifnr FOR  lfm1-lifnr .
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS:
       r_asn RADIOBUTTON GROUP rad1 USER-COMMAND uc1 DEFAULT 'X',
       r_ers RADIOBUTTON GROUP rad1  ,
       r_830 RADIOBUTTON GROUP rad1,
       r_850 RADIOBUTTON GROUP rad1,
       r_862 RADIOBUTTON GROUP rad1,
       r_810 RADIOBUTTON GROUP rad1,
       r_820 RADIOBUTTON GROUP rad1,
       r_824 RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECT-OPTIONS: s_bstae   FOR lfm1-bstae MODIF ID sd1.
    PARAMETERS:
       p_ekorg   TYPE lfm1-ekorg   MODIF ID md1,
       p_evcode  TYPE edp21-evcode MODIF ID md2,
       p_kappl   TYPE nach-kappl   MODIF ID md3,
       p_parvw   TYPE nach-parvw   MODIF ID md4,
       p_kschl   TYPE nach-kschl   MODIF ID md5,
       p_vakey   TYPE nach-vakey   MODIF ID md6,
       p_werks   TYPE werks_d      MODIF ID md7,
       p_bukrs   TYPE lfb1-bukrs   MODIF ID md8.
    SELECTION-SCREEN END OF BLOCK b3.
    *eject
    * Initialization
    INITIALIZATION.
    *  PERFORM check_authorization.
    *eject
    * at selection screen
    *AT SELECTION-SCREEN.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF r_asn EQ 'X'
          AND ( screen-group1 = 'MD3' or screen-group1 = 'MD4'
             or screen-group1 = 'MD5' or screen-group1 = 'MD6'
             or screen-group1 = 'MD7' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_ers EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD3'
             or screen-group1 = 'MD4' or screen-group1 = 'MD5'
             or screen-group1 = 'MD6' or screen-group1 = 'MD7'
             or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_830 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD6'
             or screen-group1 = 'MD7' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_850 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD6'
             or screen-group1 = 'MD7' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_862 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_810 EQ 'X'
          AND ( screen-group1 = 'MD3' or screen-group1 = 'MD4'
             or screen-group1 = 'MD5' or screen-group1 = 'MD6'
             or screen-group1 = 'MD7' or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_820 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD3'
             or screen-group1 = 'MD4' or screen-group1 = 'MD5'
             or screen-group1 = 'MD6' or screen-group1 = 'MD7' ).
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ELSEIF r_824 EQ 'X'
          AND ( screen-group1 = 'SD1' or screen-group1 = 'MD1'
             or screen-group1 = 'MD2' or screen-group1 = 'MD3'
             or screen-group1 = 'MD4' or screen-group1 = 'MD5'
             or screen-group1 = 'MD6' or screen-group1 = 'MD7'
             or screen-group1 = 'MD8').
          screen-active = '0'.
          screen-invisible = '1'.
          screen-input = '0'.
          screen-output = '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    *eject
    * Event top of page
    TOP-OF-PAGE.
    *eject
    * event Start of Selection
    START-OF-SELECTION.
    *eject
    *EVENT End-of selection
    END-OF-SELECTION.
    *eject
    *EVENT  End-of page
    END-OF-PAGE.
    Regards,
    Vikas.
    plz reward if helpful..

  • Modify css of Left navigation - ms-core-listMenu-verticalBox

    Hi,
    I have a left navigation in which the first letter of text is getting capitalized.
    Below is the css which I got from IE Developer tools:
    <div id="zz15_V4QuickLaunchMenu" class=" noindex ms-core-listMenu-verticalBox">
    <ul id="zz16_RootAspMenu" class="root ms-core-listMenu-root static">
    <li class="static">
    <a class="static menu-item ms-core-listMenu-item ms-displayInline ms-navedit-linkNode" tabIndex="0" href="/test/Pages/page1.aspx">
    <span class="additional-background ms-navedit-flyoutArrow">
    <span class="menu-item-text">About The New Data</span>
    </span>
    </a>
    </li>
    <li class="static selected">
    <a class="static selected menu-item ms-core-listMenu-item ms-displayInline ms-core-listMenu-selected ms-navedit-linkNode" tabIndex="0" href="/test/Pages/page2.aspx">
    <span class="additional-background ms-navedit-flyoutArrow">
    <span class="menu-item-text">A Brief History Of My Time</span>
    <span class="ms-hidden">Currently selected</span>
    </span>
    </a>
    </li>
    </ul>
    </div>
    The class "menu-item-text" has text-transform to "Capitalise", which i want to change to None.
    But how to select the parent and change the css?
    I mean, The class "menu-item-text" under parent class "ms-core-listMenu-verticalBox" , "root ms-core-listMenu-root static", "li static",  "li static selected"..
    Only for this group, i want to change the class "menu-item-text". How to do the css selection in this case?
    Thanks

    Hi,
    The following CSS style for your reference:
    <style type="text/css">
    .ms-core-listMenu-verticalBox > ul.ms-core-listMenu-root > li .menu-item-text {
    text-transform:none !important;
    </style>
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Teaching myself CSS - Can anyone help me with my navigation?

    First, I must say that I (and trial & error) have taught myself everything I thus far know about web design.  I've never submitted my code to be critiqued in a forum so I'm hoping it's not a horrible mess. 
    That being said, I'd love it if someone could assist me in figuring out how to get my "sub navigation" to look the way I want it to.  I've only put basic text in it's general place for the moment, instead of attempting a million things & cluttering up my code any more than I already have.
    Basically, I want the sub navigation to appear (to the right) when the user hovers over each of the 4 respective large navigation images.  I want it to appear outside of the main content, or rather outside of the sidebar in which the main navigation is placed.  (eventually I plan to figure out how to code the whole hidden/show on hover thing...but that is my secondary concern to placement at this time.  def wouldn't mind tips for that also though!!)
    I've included a link to my test site so that you can see all code, images involved. (i've uploaded all related files to the server) If that doesn't work, please let me know what else you need.
    In advance, thank you so much!
    http://www.thefawngroup.com/testing/index.html

    I'd investigate using the "spry vertical menu' which ships with Dreamweaver. yes you will need to alter the css BUT you will quickly have a good basis for your navigation.
    There are plenty of people around here, especially Gramps, who knows the DW spry stuff inside out and will help out if you get stuck.
    First get a basic spry vertical navigation onyour page >Insert>Spry>Spry Menu Bar>Choose vertical option.
    Go into code view and change the spry html structure to as below: (You can copy and paste the code below inplace of the code that is put there automatcally).
    <ul id="MenuBar1" class="MenuBarVertical">
    <li><a class="MenuBarItemSubmenu" id="navImageOne" href="#">Item 1</a>
    <ul>
    <li><a href="#">Item 1.1</a></li>
    <li><a href="#">Item 1.2</a></li>
    <li><a href="#">Item 1.3</a></li>
    </ul>
    </li>
    <li><a class="MenuBarItemSubmenu" id="navImageTwo" href="#">Item 2</a>
    <ul>
    <li><a href="#">Item 2.1</a></li>
    <li><a href="#">Item 2.2</a></li>
    <li><a href="#">Item 2.3</a></li>
    </ul>
    </li>
    <li><a class="MenuBarItemSubmenu" id="navImageThree" href="#">Item 3</a>
    <ul>
    <li><a href="#">Item 3.1</a></li>
    <li><a href="#">Item 3.2</a></li>
    <li><a href="#">Item 3.3</a></li>
    </ul>
    </li>
    </ul>
    Open the linked spry css file and change the width of the below css selector to the same width as your large navigation image (I've set it at 300px)
    ul.MenuBarVertical
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 300px;
    Change the below css selector to match the width of your large nav image.
    ul.MenuBarVertical li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 300px;
    Change the margin of the below css selector to as below and change the width to 150px (this will be the width of your submenus)
    ul.MenuBarVertical ul
        margin: 30px 0 0 340px;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: absolute;
        z-index: 1020;
        cursor: default;
        width: 150px;
        left: -1000em;
        top: 0;
    Change the width of the css selector below to 150px as shown
    ul.MenuBarVertical ul li
        width: 150px;
    Change the height and width of the css selector below to match that of your large navigation image (I've set them to 300px)
    ul.MenuBarVertical a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    height: 300px;
    width: 300px;
    That should get you a step closer to where you need to be. Test in browser.
    You should have 3 large boxes on the page which when moused over turn blue and a submenu flicks out to the right.
    Now add the following css selectors. One for each of your large Nav images. Change - yourNavImageOne.gif - to the name of your image. If the image is in a folder named 'images' then add that before the image name - images/yourNavImageOne.gif. Do the same for yourNavImageTwo.gif  and yourNavImageThree.gif
    #navImageOne {
    background-image: url(yourNavImageOne.gif);
    background-repeat: no-repeat;
    #navImageTwo {
    background-image: url(yourNavImageOne.gif);
    background-repeat: no-repeat;
    #navImageThree {
    background-image: url(yourNavImageOne.gif);
    background-repeat: no-repeat;
    Now in design view you should see your navigation images.
    To get the roll-over effect add the below css and change the image to the rollover image that you want to appear when your large Nav image is moused over.
    #navImageOne:hover {
    background-image: url(yourNavImageOne.gif);
    background-repeat: no-repeat;
    Add the addition roll-over css for your other images:
    #navImageTwo:hover {
    background-image: url(yourNavImageOne.gif);
    background-repeat: no-repeat;
    #navImageThree:hover {
    background-image: url(yourNavImageOne.gif);
    background-repeat: no-repeat;

  • CSS Load Balance Help

    Hi there,
    I need a help, and I have this following situation:
    *My Service is web and its listen TCP ports - 443 Https and 80 http
    *The port 443 is only used to login and after its login all web requisitions are by port 80 www
    *We have 02 services running and we want a VIP in order to serve the 02 ports mentioned.
    *The access persistency must occurs in the CSS. A same client requisition on port 80 or 443 must redirect the user to the same server already answered the login requisition in the https login
    Is tehre any configuration possible to do in order to accomplish that?
    Any help is welcome.
    Regards

    Message Addendum: Any cisco web site reference will be appreciated.
    CSS model and OS version:
    CSS_01# show ver
    Version: sg0730106 (07.30.1.06)
    Flash (Locked): 07.30.1.06
    Flash (Operational): 07.30.1.06
    Type: PRIMARY
    Licensed Cmd Set(s): Standard Feature Set
    CSS_01# show chassis
    Configuration for CSS11503-AC E0:
    Product Name: CSS11503-AC E0 SW Version: 07.30.1.06
    Serial Number: JAB0831L01G Base Mac Address: 00-11-92-d1-60-9f
    Slot Number Module Name Status
    1 CSS5-SCM-2GE primary
    2 CSS5-IOM-2GE primary
    3 empty slot
    4 CSS503-SM-INT powered-on
    Slot / Port Name Status
    1/1 SCM-2GE online
    1/2 SCM-2GE online
    2/1 IOM-2GE online
    2/2 IOM-2GE online
    CSS_01#

  • Songs Won't Play, Album Art Not Modifiable, ID3 Tags, Need Help

    I have a 32 GB iPod Touch, Windows Vista, the latest version of iTunes and Quicktime as well as the latest iPod software.
    I noticed the other day that a bunch of my songs were missing album art. I have a library with almost 7,000 songs and I have album art for everything. I went to the songs to attempt to fix the album art and noticed that it said, Album Art Not Modifiable, in the Album Art preview screen. I thought that was weird and it wouldn't let me add new album art to these albums.
    I also noticed that none of these songs would play. They wouldn't play on my iPod or on iTunes. You can click play and it looks like it's going to play, but the counter never leaves "0".
    I thought something was wrong with my files and that I would have to re rip or download the songs. However, by chance I opened one of the songs in Window Media Player and it worked, so I knew the files were fine.
    I did a search online and found several people with the same problem and a few things to try. But nothing worked until I stumbled upon a solution of setting the ID3 tags to version "None", then setting them to version 2.4. I tried it and it worked.
    But now it keeps happening, I get a new group of albums every day that won't play.
    Can anyone tell me what is causing this?
    How do I prevent it?
    Do I really need to take every song in my library and change the ID3 tags, that could take forever?
    Could anyone please help and shed some light on this.
    Thank You

    Thanks for replying, Please read our Operating System details before taking a guess about what 'could' be the problem...
    I think I figured it out anyway, Windows Media Player might be adding extra information that iTunes does not like, either Windows Media Player and/or iTunes 7.7.1 don't conform to ID3 v2.4 standards...
    Please fix your software, Apple. I know how you love to be unique and mock PC users with your one-sided advertisements but at least conform to the ID3 standards.

  • Html/css background flash help!

    I seriously need some help. I am somewhat new to flash and
    need some help as soon as possible (ANY REPLY will be greatly
    appreciated). I submitted an earlier post under the topic "masking
    a fading image," but no one has replied (I didn't mean for it to
    sound ignorant or retarded, but I'm just trying to find the right
    words to accomplish what I'm trying to do. I will break the entire
    task down into more appropriate topics and take it one step at a
    time.
    My first step is as follows: I've created a flash movie file
    that I would like to set as the background in an html page. Is this
    possible? I do know when I publish the flash as a transparent web
    page, I can view the source, copy that, and integrate it into the
    html page I want to create (with a background color ="#000000") as
    long as the flash file is saved within the directory of the web
    content. However, the code (since it is transparent) seems to be
    just placed on the html page (on the foreground), and the animation
    will hover over any links or pics that are also place within the
    page. Is there a way to set the whole flash file in the background
    of the html page, so it doesn't seem to hover over other content?
    Thank you ahead of time.
    Joe

    Your basic issue is getting HTML to appear over top of an
    embedded SWF. If you want to make the SWF literally a background
    image like using the CSS rule "background," that is not possible.
    If, however, you just need some piece of HTML to appear over top of
    a Flash movie(common need is a drop down menu -- like adobe.com
    homepage), then there are workarounds, but they are not fun and not
    always reliable:
    http://www.google.com/search?q=html+over+flash&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-U S:official&client=firefox-a

Maybe you are looking for