Can't change properties to selectors.

Hello,
I'm new to using Dreamweaver. I've created some selectors for div files in my HTML. When I go to add properties to the selector, it doesn't do anything. I can't change the padding, position or anything. The image or text just stays in the same place and doesn't change. Am I doing something wrong?
I'm using Dreamweaver CC and a Macbook Pro running Lion on it.
Here is my code if this helps.
HTML:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>vacancyart</title>
<link href="CSS/index.css" rel="stylesheet" type="text/css">
<!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.--><script>var __adobewebfontsappname__="dreamweaver"</script><script src="http://use.edgefonts.net/source-sans-pro:n2:default.js" type="text/javascript"></script>
</head>
<body>
<
  <header id="top">
    <nav id="mainNav">
      <ul>
        <li><a href="index2.html">Home</a></li>
        <li><a href="about.html">About</a></li>
        <li><a href="art.html">Art</a></li>
        <li><a href="photos.html">photos</a>
        <li>
        <li><a href="Projects.html">Projects</a></li>
        <li><a href="Resume.html">Resume</a></li>
        <li><a href="https://www.etsy.com/shop/VacancyArt">Etsy</a></li>
        <li><a href="Contact.html">Contact</a></li>
      </ul>
      <div id="main2">Vacancy Art is for all art and design. Check back frequently for updates!</div>
    </nav>
  </header>
<body> <div id="IG image"><img src="Images/IGlogosite2.png" alt="" width="50" height="55" id="IG"/></div></body>
  <footer>
    <p>&copy;</p>
  </footer>
</div>
</body>
</html>
CSS:
header {
  text-transform: uppercase;
  list-style-type: none;
  list-style-position: outside;
  width: 115%;
  bottom: 1px;
  max-height: 0%;
  text-decoration: none;
#main2 {
  display: block;
  color: #FFFFFF;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  position: fixed;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  font-style: normal;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  line-height: 200px;
  margin: auto;
  margin-top: -100px;
  position: absolute;
  top: 70%;
  width: 80%;
  background-color: #000000;
  opacity: 0.9;
  right: 10%;
#mainNav ul  {
  list-style-type: none;
  display: block;
  padding-bottom: 2px;
#mainNav a {
  width: 10%;
  display: block;
  color: #FCFCFC;
  text-decoration: none;
  background-color: #010101;
  text-align: center;
  line-height: 100%;
  -webkit-box-shadow: 0px 0px 0px 1px;
  box-shadow: 0px 0px 0px 1px;
  opacity: 0.9;
  overflow-x: visible;
  visibility: visible;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  float: left;
  text-shadow: 0px 0px;
#mainNav {
  text-align: center;
  vertical-align: baseline;
  list-style-type: none;
  list-style-position: inside;
  display: inline;
  color: #000000;
  opacity: 0.4;
body {
  background-color: #000000;
  color: #F9F8F8;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 200;
  text-align: center;
  padding-top: auto;
  padding-bottom: 0px;
  max-width: none;
  background-image: url(../Images/Japanesehouse1.52.jpg);
  background-size: 100px
  background-repeat: no-repeat;
  display: inherit;
  width: 100%;
  height: 100%;
  padding-right: 0%;
  position: static;
#IGimage {
  padding-right: 100%;
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  padding-left: 10px;
Any Idea? Thanks!

Messy code often causes DW to choke.  And it doesn't make browsers happy either.  My advice is to use HTML5 tags since you're already using an HTML5 doc type.  It makes your code much simpler.  Copy & paste this into a new, blank document.  SaveAs test.html and preview in browsers.  I'll let you style it however you wish.  My goal was to get things cleaned up and remove the invalid & redundant code.
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>vacancyart</title>
<!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.-->
<script>var __adobewebfontsappname__="dreamweaver"</script><script src="http://use.edgefonts.net/source-sans-pro:n2:default.js" type="text/javascript"></script>
<style>
/**CSS Reset**/
    padding: 0;
    /**fixes the CSS box model in Fluid Layouts**/
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
img {
    vertical-align: baseline;
    display: block;
    max-width: 100%
body {
    width: 88% /**adjust width in px or % as req'd**/;
    margin: 0 auto; /**with width, this is centered**/
    color: #F9F8F8;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    /**scales BG image to viewport**/
    background: #000 url(Images/Japanesehouse1.52.jpg) no-repeat center center fixed;
    /**for Safari,Chrome**/
    -webkit-background-size: cover;
    /**for Firefox**/
    -moz-background-size: cover;
    /**for Opera**/
    -o-background-size: cover;
    /**for other browsers**/
    background-size: cover;
header, footer {
    width: 100%;
    background: rgba(51,102,153,0.5)
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
    width: 85%
nav li a {
    text-transform: uppercase;
    color: #CCC;
    text-decoration: none;
    text-align: center;
    float: left;
    width: 6.5em;
    opacity: 0.75;
nav li a:hover,
nav li a:active,
nav li a:focus {
     text-decoration: underline;
     opacity:1.0
/**clear floats after nav**/
nav:after {
    clear: both;
    display: block;
    content: '';
    visibility: hidden;
/**main content**/
article {
    text-align: left;
    padding: 1%;
    background: rgba(255,255,255,0.2)
/**re-usable classes**/
.right { text-align: right }
.center { text-align: center }
.left { text-align: left }
</style>
</head>
<body>
<header> <img src="Images/IGlogosite2.png" alt="logo" id="IG"/>
<nav>
<ul>
<li><a href="index2.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="art.html">Art</a></li>
<li><a href="photos.html">photos</a><li>
<li><a href="Projects.html">Projects</a></li>
<li><a href="Resume.html">Resume</a></li>
<li><a href="https://www.etsy.com/shop/VacancyArt">Etsy</a></li>
<li><a href="Contact.html">Contact</a></li>
</ul>
</nav>
</header>
<article>
<h1 class="center">Vacancy Art is for all art and design. Check back frequently for updates!</h1>
<h3>Heading 3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
<h3>Heading 3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
</article>
<footer>
<small class="right">&copy; 2014 Web Site Name.  All rights reserved.</small>
</footer>
</body>
</html>
Nancy O.

Similar Messages

  • BUG : Can't change properties (font, size, etc.) in Text Box (Acrobat Pro Extend 9.3.4)

    Here is a bug in Acrobat 9. It's really frustrating :
    1- Open any PDF file.
    2- Select the Text Box tool and type something.
    3- Notice that you can change the font using the Properties toolbar (CTRL + E).
    4- Open a second PDF file.
    5- Select the Text Box tool and type something in this document.
    6- Notice that you can change the font using the Properties toolbar (CTRL + E) also.
    7- Switch back to the first opened PDF file.
    8. Try using the Properties toolbar.
    YOU CAN'T BECAUSE THE TOOLBAR IS DISABLED!
    There is nothing you can do to make it enabled again.
    This bug seems to be present since Acrobat 8 and the Acrobat Developper Team did not fix it yet. I am a programmer and I know that you need only 5 minutes to fix this bug. WHY IT HAS NOT BEEN FIXED YET???
    It's horrible to deal with this bug...
    I hope Acrobat Developper Team heard me and will fix this ASAP.
    Thank you.

    We have had tons of discussions about this problem.  I would love it if Adobe would fix this problem.  In the meantime, one thing we are testing in our environment, and we think it is successful, is to set Preferences to "never view in PDF/A mode'.  Maybe that can help you.

  • Can I change properties of objects by javascript?If can,how do this?

    In my jsp page I wrote:
    <%
    session.setAttribute("username","admin");
    %>
    I want to use javascript change value of "username" to "guest",please tell me......
    thanks

    Javascript, which is run on the client, cannot change the value of server-side session variables.

  • Array of clusters and in the cluster is a bar meter, how can I change the color individually?

    Array of clusters and in the cluster is a bar meter, how can I change the color of the bar meter individually for each element of the array?  I have just figured out that you can't change properties of one element of the array without all elements changing.  For the scaling I had to make numeric indicators for each tick of the scale so that each bar meter in the clustered array would have individual scales.  I also had to do some math to scale each barmeter to display correct proportions from 0 to 100%.  Now I'm stumped on the color of the bar meter.  Basically, if the value goes over a setpoint, the bar meter needs to turn red.  It has to be in an array to be infinitely scalable.
    Thanks
    Matt
    Solved!
    Go to Solution.

    You can't do that-
    without a little trick.
    You could consider laying a custom color box over the bar graph in the cluster you can set the color based on the value of the bar graph or even make a "Pseudo"- bar graph using a series of color boxes stacked to look lie a bar and changing values of the Color boxs from empty to full to red.
    Here is an example to demonstrate
    Jeff
    Attachments:
    Pseudo bar.vi ‏12 KB

  • How can we change the properties of a seeded item in OAF !!!

    Hi All Gurus!
    I have a seeded item (Button 'Apply') on an Add attachement page provided by Oracle in Self Service Web Module. Oracle documentation says this:
    If you want changes to the Attachments table or page to commit automatically, without requiring a user to select Apply in the base page, you can turn on "auto-commit" by setting the Automatic Save property to True for the attachmentLink, attachmentTable, or attachmentImage item.With "auto-commit" turned on, each action ("Add", "Update", "Detach") performed by the user in the Attachments table or page is automatically committed.
    Q1) How we can see the properties of the seeded items?
    Q2) How we can turn on the personalization pencil button of an item that is disabled by Oracle development team?
    Please let me know how we can achieve this through self-service personalization. Any light on this.
    Thanks in advance!
    John
    Message was edited by:
    jtom

    You donot need to do anything on the Add Attachment page. The autoCommit feature is exposed as a property on the Attachment bean. You need to extend the controller in the base page where the attachment Image, Link is present and get a handle to the attachmentBean and call setAutoCommit(true) which will enable automatic saving.Use personalizations to modify the controller class property on the base page. You can later choose to remove the Save button on base page using personalization.

  • How can I change session properties in Audition after omf import.

    After importing an omf. Everything is imported correctly. But the session properties do not match. I would like to change it back to 24bit. How can I change the session properties such as bit depth, without having to create a new session? There used to be a advanced session properties window.

    When you save the session in Audition, if you use 'Save As' then you'll get options to set the save defaults to whatever you want.

  • Can't Change Labels for Properties

    I Can't Change Labels for predefine Properties
    or Custom Properties.
    I had done it with this:
    http://help.sap.com/saphelp_erp2004/helpdata/en/65/6fc63ed4027f6be10000000a114084/frameset.htm
    I just followed what the help said.
    but i can't see any change for my label of Properties.
    I had done it as follow steps.Please help me to
    Check if i miss some steps!
    1,I creat .properties files
      mylabels.properties
       in this properties file  i creat a key
           modified=date
      mylabels_zh_CN.properties
        in this properties file  i creat a key
           modified=u66F4u65B0u65E5u671F
    2,I made a jar file use the two .properties files
      named mybunding.jar
    3,I copy this jar file to
    .../j2ee/cluster/server<n>/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal/portalapps/com.sap.km.common.resourcebundle/lib
    4, Create a new metadata extension under Content Management -> Global Services -> Property Metadata -> Metadata Extensions.
      named it  my_metadatae_extension
       set  Bundle File=com.sap.km.common.resourcebundle.mybunding.mylabels
    5,restart the servlet engine,
    6 in the key for label of the properties
        i set modified the key i creat in step 1.
    when i display the properties it still didn,t display
    my created lable.
    How should i do? any step i miss? or any better solution
    for the lable?
    Please help me ,
    BestRegards
    Han

    Hi Han,
    here my corrections:
    1.
    I would use the filename "mylabels_cn.properties" and not "mylabels_zh_CN.properties"
    2.&3.
    This is the SP2 way for using the bundle files for properties. For NetWeaver you need to create a new PAR-file with the bundle file including the labels and translations as described <a href="http://help.sap.com/saphelp_nw04/helpdata/en/65/6fc63ed4027f6be10000000a114084/frameset.htm">here</a>.
    It's very easy if you use the example PAR file provided by SAP in SAP Note 817876, as mentioned in the referenced link (Prerequisites section).
    Read carefully the process in the link and try again. If you still experience problems, come back with the new detailed description.
    Hope this helps,
    Robert

  • Can't change fps in project properties

    I can't change the fps in the project properties in Motion 3. I can change everything else, but that. It is stuck at 29.97 but I want it to be at 23.98. Even when I change the preset to, say, 720p24, the fps is still at 29.97. Is this a bug, or is their a magic setting to change somewhere else?

    Oh boy! That's weird. I started a new NTSC Broadcast SD project, but the frame rate was still stuck to 29.97 (the frame rate field is not editable). So instead of changing the preset in the project properties, as I've done before, I tried your suggestion. I created a new project, but in an HD format that supported 24p. I chose the DVCProHD 720p24 setting, fortunately this time, the fixed in cement frame rate was at 23.98; I then immediately changed the preset back to NTSC Broadcast SD within the project properties, and whammo! SD res but the frame rate stayed at 23.98.
    This is really, I mean really counter intuitive. Apple really did not think things through. Perhaps it's a programing logic issue... Who knows... it's still sloppy!
    Thanks Mark for pointing me in the right direction.

  • Can't Change Frame Rate in Properties

    To change project properties in FCPX you click the wrench icon, which brings up a window to select 720p, 1080p, etc as well as frame rate. The problem is, there are no options in the dropdown for the frame rate in all of my projects, it chooses one automatically (seemingly arbitrarily) and you can't change it.
    I thought that when the progam says it would detect the properties of the first clip and adjust the project properties to match, it would actually do that (maybe I should have known better). So I imported my standard 1080p 29.97fps footage from my Canon 7D and then FCPX automatically set the project properties to...720p at 24fps. Curious, no? No problem, I thought, I'll just go to Project Properties and manually correct FCPX. But it was not to be, as FCPX had decided to give me only one  option in the frame rate selection: 24p. But no, I thought, I would very much like my properties to be 29.97 so as to match my footage. But FCPX did not agree with this, and would not change its mind.
    Has anyone found a solution to this?
    Do any pros still use Final Cut Pro?
    Thanks,
    Kurtis

    It may be possible that a .jpg was the first thing in the project, which may explain the seemingly random properties (why wouldn't they just make it default to a more common setting like 1080p 29.97?) but I digress.
    And it's a very stupid move to revoke the ability to change project properties while clips are in the project, that makes no sense.
    I'm begining to think that Apple has really failed with this new version of Final Cut; and I've been using Final Cut for years. I am debating switching to Premiere, but I will give FCP X a bit more time to redeem itself.
    Kurtis

  • Can I change export properties ? ?

    I wish make a file .mov, with transparent background, and LT make it, but the file are more heavy, this is the reason of my question.
    Livetype can change properties export, to make a file ??. How I do ??. Or I need use QT 7.0.2 Pro, to do it ?? in this case, how do it ? ?
    TIA

    Welcome.
    To keep the alpha channel, transparency, you must use the ANIMATION codec. That is the default codec for LiveType renders. The files are heavey and large, yes.
    bogiesan

  • Where can I change the System properties permanently

    Instead of
    System.setProperty("name","new-value");
    to change the system properties in run-time.
    How can I change it in a config file? Where is it?
    Thx.

    Hai,
    We can't directly set the system properties values using config/properties file. But, if you wish to use <b>Spring </b> framework, there is an option to load system properties through a config file.
    Regards,
    Loga

  • How can i change element's properties at specific time position?

    Hi, as the title describes, i want to change 'product_lg' position(left,top,width,height) at time position 'product_show' and 'product' automaticly, how can i do it with js?
    thanks!

    I known your solution, but i need to change it on trigger 'compositionReady' or 'compositionComplete', actually i want to init element's trigger effects at different time position automaticly.
    code as followed can change element's properties at current time, but it can't change element's properties at next coming trigger time:
    sym.$("Ellipse").css({'top':209, 'left':251, 'height':27, 'width':27});
    Thanks!

  • How to make a custom agent with dynamic properties that can be changed with OMS

    I have made a custom agent where old documents will be purged. We are doing this with a parameter purgeDate. Now we do this from the Oracle9IfsManager.
    So if we want a new date, we have to unload and load the server to use the new date.
    I see that some agents can be changed from the OMS. Than they use the new settings after restart.
    Who can I do this?

    As an FYI: I just solved the problem by going the "low road." I'll be a bit laborious in case someone else wants a solution at a later date (I know I Googled the topic and found nothing). I experimented by simply:
    Opening a new email message
    Selecting my custom template
    Copying the custom signature (Select All)
    Opening another new email message
    Selecting Edit on the Signature pulldown menu
    Hitting the plus symbol to create/add a new signature in the pane
    Pasting into the new signature
    Naming it
    Selecting "Choose signature" at the bottom of the signatures pane
    And violà!!
    It now appears as a possible selection *and* as the default.
    Better yet - it is now my default and will work as a reply to an email.
    I think I got it all right in the list above.
    OK, granted, this is a pretty simply signature - a list of my website, SoundCloud, twitter etc with those names in bold and a graphic of my color logo - but... it works! YMMV.
    Give it to Apple to make it so simple that any fool could do it (that would be me), you wouldn't need a "specialized" app, and - of course - there wouldn't even be instructions on how to do it!
    Best,
    Joel

  • Can i change a field properties without affecting source code?

    I have an application that is running a test. A field ask a technician to add a serial number, however this field only accepts numeric characters and i have alphanumeric serial numbers. Can i change the porperty of this field wihtout affectinc the source code?

    gluviano wrote:
    > I have an application that is running a test. A field ask a technician
    > to add a serial number, however this field only accepts numeric
    > characters and i have alphanumeric serial numbers. Can i change the
    > porperty of this field wihtout affectinc the source code?
    No probably not, unless your chars are 0..9 and A..F only. In that case
    you could change the numeric control to display Hexadecimal numbers.
    Only 8 hex-char length however for the int32 which is the maximum size
    integer you can use.
    For anything else you need a string control to enter alpha chars. The
    problem is even more complicated as you will have to change more things
    downstram the wire where you use that serial number.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Can not change data in Input Ready Query

    All,
    I have created an input ready query on an aggreagation level which has one transactional cube underlying it however, after run the query I am unable to change data in the cells even though I get a warning message saying query is ready for input
    Note:
    1. The underlying realtime cube is in "Planning Mode:Loading not allowed" state in rsa1
    2. I tried including all characteristics so that the record can be uniquely identified at that aggregation level).
    3. I am not using any characteristic restrictions
    4. I have not set any data slices
    5. I have set the property for Planning "Start query in Change Mode"
    6. I have set the 'Key Figure' Planning Properties to "Can be changed Manually or via Planning Functions" for the key figures
    7. I do not have currency/unit in row/column.
    8. There are any locks occurring
    Any pointers welcome.
    Thanks,
    Milind

    Hi Milind,
    Was wondering how was your problem solved. I get the same message when I run the query in web from query designer and in bex analyzer the cells are not updated with the changes that I make.
    I am hitting my head against the wall to figure what could be the problem as my plan query is simply based on aggregation level created directlty upon the real time info cube.
    Have cross checked all the points that you mentioned in this post but I cells do not change.
    There should be some way around to solve this problem.
    Thanks

Maybe you are looking for