Css inconsistencies

im using a css i made to create rollovers on text. i found
that inorder for it to apply i had to put the css on the word
(style doesnt appear to change tho) and then put the link on the
word. once the link is on the css appears on the word. i ddi this
for several text buttons and everyonce in a while it will just not
work and when i put the link on, the word jumps to being a plain
underlined hyperlink. why is dreamweaver so inconsistent this way
and how do i fix it?

Sorry - I don't see what the problem is.
You could tighten your css substantially to this -
.pellio2 a {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000;
text-decoration: none
.pellio2 a:hover {
color: #6CF;
And in fact, if you did this -
ul.pellio2 a {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000;
text-decoration: none
ul.pellio2 a:hover {
color: #6CF;
to your CSS, and this to your HTML -
<ul class="pellio2">
<li><a href="#">Looking for a competitive
Credit Card?</a></li>
<li><a href="#">Compare Balance Transfer
deals</a></li>
<li><a href="#">Check out the new Mint
Credit Card from <br>
Royal Bank of Scotland</a></li>
<li><a href="#">Apply for a Credit Card
easily and quickly</a></li>
<li><a href="#">See the latest deals on UK
Credit cards</a></li>
<li class="pellio2"><a href="#">Compare a
huge range of products to get the Best
Credit Card for you</a></li>
</ul>
You'd have much nicer HTML, too.
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
==================
"pellio" <[email protected]> wrote in
message
news:[email protected]...
> heres the css code
>
> .pellio2 a { font-family: Verdana, Arial, Helvetica,
sans-serif;
> font-size:
> 10px; font-style: normal; line-height: normal;
font-weight: normal;
> font-variant: normal; color: #000000; text-decoration:
none} .pellio2
> a:hover {
> font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
> font-style: normal; line-height: normal; font-weight:
normal;
> font-variant:
> normal; color: #66CCFF; text-decoration: none}
>
> heres some of the code showing the css on a text button
on the page:
>
> <td width="11" rowspan="6" align="left"
valign="top"> </td>
> <td height="19" colspan="3" align="left"
> valign="top"> </td>
> </tr>
> <tr>
> <td width="297" height="229" align="left"
> valign="top"
> background="parts/content-section1.jpg">
> <table width="100%" border="0">
> <tr>
> <td width="1%" height="2"> </td>
> <td width="97%" align="left" height="2"
> class="boldcss">credit
> cards</td>
> </tr>
> <tr>
> <td width="3%" height="127"
> rowspan="2"> </td>
> <td width="97%" height="27" align="left"
> valign="bottom"
class="listings"> </td>
> </tr>
> <tr>
> <td width="97%" height="63" align="left"
> valign="top">
>
> <li class="pellio2"><a href="#">Looking
> for a
> competitive Credit Card?</a></li>
> <li class="pellio2"><a href="#">Compare
> Balance
> Transfer deals</a></li>
>
<span class="pellio2"><a
> href="#">Check
> out
> the new Mint Credit Card from <br>
> Royal Bank of Scotland</a></span><br>
> </li>
> <li class="pellio2"><a href="#">Apply for
> a
> Credit
> Card easily and quickly</a></li>
> <li class="pellio2"><a href="#">See the
> latest
> deals on UK Credit cards</a></li>
> <li class="pellio2"><span
> class="pellio2"><a
> href="#">Compare
> a huge range of products to get the Best
> Credit
> Card for you</a></span><br>
> <br>
> </li>
>
> </td>
> </tr>
> </table>
> </td>
> <td width="9" rowspan="5" align="left"
> valign="top"> </td>
> <td width="302" align="left" valign="top"
> background="parts/content-section2.jpg"><table
width="100%" border="0">
> <tr>
> <td width="1%" height="2"> </td>
>
>
>

Similar Messages

  • CSS layout, again...at wits end

    I'm tellin' ya, I've been trying to grasp this stuff for 2
    weeks, and it's just not working.
    I am trying to recreate a pretty simple layout that I've used
    before pre-CSS, using tables.
    It's a simple top "banner" area, then 2 columns in the middle
    (one narrow on left for links, one wide on right for content), and
    another banner that flows below the middle area.
    I've tried every possible combination of DIVs (and
    Layers...), float, clear, whatever. It just doesn't work.
    Here's the working URL of the master Template page:
    http://www.valentines-day-flowers-by-schaefers.com/
    In DW, I don't get that white gap below the logo at the top,
    but in a browser I do. For this attempt, I made a Parent DIV, and
    put the 2 columns in as Children, thus allowing me to put the
    bottom banner in place, and have it move down as the body content
    grows in height.
    Plus, the red bar of white text links on the left does not
    "fill" the height down to the bottom banner area. I have about had
    it, and am going to have to go back to my old Template way just so
    I can get the stupid site up and running.
    Can someone take a quick look at the code and see if anything
    is obviously wrong?
    here's the .css file:

    >white gap below the logo
    You need to: apply float:left to the #right-body. Change the
    CSS to
    #middle-parent #right-body {
    margin-left: 220px; float:left;
    You need to remove the <p> </p> before
    the closing tag of
    #middle-parent. You also need to clear the floats before the
    closing tag.
    Your webpage code
    Replace
    <p>d</p>
    <p>d </p>
    </div>
    <p> </p></div>
    with
    <p>d</p>
    <p>d </p>
    </div>
    <br style="clear:both" />
    </div>
    >red bar of white text links on the left does not "fill"
    the height
    It won't. Divs are different from tables. Divs are
    independant of each other
    unlike table cells of the same row, which stretch in height.
    Google faux columns and you'll get solutions.
    There are other CSS inconsistencies but I am not too
    qualified to comment
    there.
    You cannot lose until you give up !!!
    "synterx" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm tellin' ya, I've been trying to grasp this stuff for
    2 weeks, and it's
    > just
    > not working.
    >
    > I am trying to recreate a pretty simple layout that I've
    used before
    > pre-CSS,
    > using tables.
    >
    > It's a simple top "banner" area, then 2 columns in the
    middle (one narrow
    > on
    > left for links, one wide on right for content), and
    another banner that
    > flows
    > below the middle area.
    >
    > I've tried every possible combination of DIVs (and
    Layers...), float,
    > clear,
    > whatever. It just doesn't work.
    >
    > Here's the working URL of the master Template page:
    >
    >
    http://www.valentines-day-flowers-by-schaefers.com/
    >
    > In DW, I don't get that white gap below the logo at the
    top, but in a
    > browser
    > I do. For this attempt, I made a Parent DIV, and put the
    2 columns in as
    > Children, thus allowing me to put the bottom banner in
    place, and have it
    > move
    > down as the body content grows in height.
    >
    > Plus, the red bar of white text links on the left does
    not "fill" the
    > height
    > down to the bottom banner area. I have about had it, and
    am going to have
    > to go
    > back to my old Template way just so I can get the stupid
    site up and
    > running.
    >
    > Can someone take a quick look at the code and see if
    anything is obviously
    > wrong?
    >
    > here's the .css file:
    >
    >
    >
    > body,td,th {
    > font-family: Arial, Helvetica, sans-serif;
    > background-image: url(images/mainhearttile.jpg);
    > width: 175px;
    > }
    > body {
    > margin-left: 0px;
    > margin-top: 0px;
    > margin-right: 0px;
    > margin-bottom: 0px;
    > }
    > a:link {
    > color: #CC6666;
    > text-decoration: none;
    > }
    > a:visited {
    > text-decoration: none;
    > color: #CC3300;
    > }
    > a:hover {
    > text-decoration: underline;
    > color: #FF0099;
    > }
    > a:active {
    > text-decoration: none;
    > color: #FF3366;
    > }
    > h1,h2,h3,h4,h5,h6 {
    > font-weight: bold;
    > }
    > h1 {
    > font-size: 24px;
    > color: #000000;
    > }
    > h2 {
    > font-size: 18px;
    > color: #CC3399;
    > }
    > h3 {
    > font-size: 16px;
    > color: #CC0066;
    > }
    > h4 {
    > font-size: 12px;
    > color: #000000;
    > }
    > #top_nav {
    > clear: both;
    > width: 920px;
    > overflow: hidden;
    > background-image: url(images/heart-tile.jpg);
    > height: 159px;
    > z-index: 1;
    > }
    > #top-links {
    > position:absolute;
    > left:226px;
    > top:93px;
    > width:490px;
    > height:24px;
    > z-index:3;
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 14px;
    > font-weight: normal;
    > color: #FFFFFF;
    > text-decoration: none;
    > }
    > #middle-parent {
    > width: 900px;
    > clear: both;
    > overflow: visible;
    > }
    > #bottom {
    > height: 100px;
    > width: 900px;
    > background-color: #FFCCFF;
    > }
    > #middle-parent #left-nav {
    > width: 143px;
    > background-color: #990000;
    > padding-left: 20px;
    > padding-right: 10px;
    > padding-top: 30px;
    > padding-bottom: 20px;
    > float: left;
    > font-size: 12px;
    > color: #FFFFFF;
    > height: 100%;
    > }
    > #middle-parent #right-body {
    > margin-left: 220px;
    > }
    > #top-links a:active {
    > color: #FFFFFF;
    > text-decoration: none;
    > }
    > #top-links a:link {
    > color: #FFFFFF;
    > text-decoration: none;
    > }
    > #top-links a:visited {
    > color: #FF99FF;
    > text-decoration: none;
    > }
    > #top-links a:hover {
    > text-decoration: none;
    > color: #660000;
    > }
    >

  • CSS being crazy...

    Hello. I created the following site, which looks exactly how
    it should in IE (tried two different versions):
    http://www.troma.com/IFTA/index.php
    In Firefox and Safari, however, it looks totally wrong (and
    looks the same in both of those browsers). The site is very light
    on HTML, and built mostly with CSS (but still very simple CSS,
    since I'm a novice in that department, so I can't imagine it would
    screw things up that much!)...
    Specifically, here's the inconsistencies:
    * The main navigation on the left should look like a
    filmstrip. I can either get it displaying properly on IE or on
    Firefox, but not both. In the current iteration of the site, I have
    the first navigation link ("Cinema") set to look properly in
    Firefox (shifted to the right in IE), and I have the rest of the
    navigation links set to look properly in IE (shifted to the left in
    Firefox).
    * On IE, the main text displays fine. On Firefox, there is a
    HUGE gap between the top paragraph and where the bulleted text
    starts. If I get rid of the "clear: both" on the "ul" tag, that
    fixes it on Firefox, but on IE, the bullets don't start underneath
    the picture. They start to the right of the picture.
    Here is a link to a zip of the site files (just one index
    page, the images folder, and one css style sheet). The whole thing
    is under 150kb, so it's VERY small. If anyone could take a look at
    this and let me know how I could fix it, it'd be GREATLY
    appreciated! Thanks!!!
    SITE FILES:
    http://www.troma.com/ifta.zip
    --Matt
    EDITED!!! - I think I fixed the site. If anyone wouldn't mind
    checking it and letting me know if it's displaying properly for
    you, I'd really appreciate it. Thanks!

    It looks identical in Firefox and IE6. Can you say what is
    the problem...
    "looks totally wrong" doesn't say a lot (o:
    Jo
    "DIY_Lobotomy" <[email protected]> wrote in
    message
    news:fakcla$dse$[email protected]..
    > Hello. I created the following site, which looks exactly
    how it should in
    > IE
    > (tried two different versions):
    >
    >
    http://www.troma.com/IFTA/index.php
    >
    > In Firefox and Safari, however, it looks totally wrong
    (and looks the same
    > in
    > both of those browsers). The site is very light on HTML,
    and built mostly
    > with
    > CSS (but still very simple CSS, since I'm a novice in
    that department, so
    > I
    > can't imagine it would screw things up that much!)...
    >
    > Here is a link to a zip of the site files (just one
    index page, the images
    > folder, and one css style sheet). The whole thing is
    under 150kb, so it's
    > VERY
    > small. If anyone could take a look at this and let me
    know how I could
    > fix it,
    > it'd be GREATLY appreciated! Thanks!!!
    >
    > SITE FILES:
    http://www.troma.com/ifta.zip
    >
    > --Matt
    >
    >

  • While generating PDF from webpage or website some of the images/texts doesnt show up in PDF. Also, there are a lot of formatting inconsistencies.

    Creating, Editing & Exporting PDFs ! ! !

    Can anyone please help, the websites hosted with us are developed on adobe CQ5.4 content management tool and when they are exported to PDF some of the images / texts doesn't get generated in the PDF. Also, the css /theme doesn't get generated resulting in formatting inconsistencies.
    However, if the same website is generated using some online PDF converters all Images & texts are coming fine with correct formatting.
    Is this issue due to using CQ CMS as that has a lot of components or is there a limitation with Acrobat XI pro trial version or anything else ?
    Appreciate if some one could provide inputs.
    Thanks
    Anusha

  • CS3 ie6 css riddle, vertical menu

    Hello all,
    I made a site about 12-18 months ago in CS3, and have
    recently come back to it to add some extra items.
    http://www.samenscheiden.info
    I changed one or two simple things in the site CSS (left and
    top values for one div, and a couple of extra classes) and tested.
    All seemed fine in Safari and Firefox, but when I look at it
    in IE6 (Win XP, VMware on a Mac) I see some strange things.
    3 menu items are underlined (Alles in een, kosten, leesvoer)
    Submenus voor "Alles in een" and "Voorstellen" have a border.
    Some submeu items are underlined (eg "Alles in een" -
    "Mediator") and others aren't.
    The submens get a white background colour by mouseover in IE
    (not what I want).
    I can't find where these inconsistencies are coming from, so
    if someone could find the time to look at it for me I'd appreciate
    it.
    I think the underlined menu items (not submenu items) may
    have to do with a link to "#", or a recursive link (eg the FAQ link
    on this page -
    http://www.samenscheiden.info/faq.html),
    but that's as far as I've got.
    The site CSS file here:
    http://www.samenscheiden.info/scheidingstijl.css
    The Spry files are here:
    http://www.samenscheiden.info/SpryAssets/SpryMenuBar.js
    http://www.samenscheiden.info/SpryAssets/SpryMenuBarVertical.css
    Thanks in advance for any help, this is driving me
    mental!

    Flyout Menus require JavaScript and some IE specific CSS code to work right.  You'll find a good cross-browser flyout menu below.  Just copy and paste their code into a new HTML document and style it the way you wish.
    http://www.dynamicdrive.com/style/csslibrary/item/suckertree-menu-vertical/
    Good luck,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Can I include both CSS and HTML codes in one Open HTML Editor.

    Somehow Cell phones are not properly reading css codes. Is there any way to include both CSS and HTML codes in one Open HTML Editor?

    Hammad, their code is fairly mobile friendly.  Per my other discussion with you ( http://topliners.eloqua.com/thread/8532 ), Eloqua's code is responsive for the most part.  Most of their issues lie with the styling of the email where you will get different fonts and different sized fonts throughout the email and some other minor display issues.
    What you are trying to accomplish is extremely difficult to do because you do not have the access to the HTML to better control how the responsive template works which is why the Eloqua templates (and most ESP templates) stick to the more basic side of emails.
    If you want to use Eloqua's WYSIWYG to make their responsive email you can do so, but I would recommend deleting all their body text before editing anything because of the inconsistencies in their code.  Otherwise, I think you would be better off coding the emails outside of Eloqua using a 3rd party editor whether it's something more robust like Dreamweaver or Coda, or whether you feel comfortable working in a more text environment with programs like Notepad++ or Brackets.
    At the end of the day remember you are paying Eloqua for these and if you choose to stick with the WYSIWYG and you are not getting the results you expect you need to tell Eloqua through your support channels.

  • Fixin IE 7 CSS-problems without extra CSS

    Lately I have been working on the layout for a foundation.
    The project only has to be finished by February, so there is plenty
    of time left. The design looks alright with Firefox, Opera and
    Safari for Windows, but something goes wrong as soon as IE 7 tries
    to interpret the CSS. The content-layer is not in place and the
    "the round corners" at the bottom are not repeated only ones (as
    demanded by the CSS).
    I already wrote an extra stylesheet which already works out
    alright on my localhost, but it hasn't got any round corners and
    the layers are arranged "absolute" which (to me) is a less than
    elegant work-around and might cause a few problems depending on
    resolution and screen-format.
    Does anyone have a suggestion how to fix this prpoblem within
    the normal CSS which is still in the page code in
    http://stefanweisshampel.de/versuch.html
    and
    http://stefanweisshampel.de/versuch_blau.html?

    Is this the complete code?
    Your first property declaration value on the margin of the
    div containing the <ul> navigation is pulling the div 140px
    towards the top of the containing element. That could push the div
    off of the page, depending on the rest of your code and page
    structure. Are you feeding these values to IE only? What is the
    -140px top margin supposed to be doing? Check that first.
    On browser detection, beware, many browsers report themselves
    as something else! It is better to learn the different browser
    inconsistencies and design for them. As Win IE (mainly pre V IE7
    nowadays) is the main problem child here, using Conditional
    Comments can help feed specific css to that particular browser and
    its derivatives. Google for Conditional Comments for more
    information.
    Regards
    Nick Barling

  • Problem with CSS in ADF 11g application

    Hi,
    I have added a CSS code for my login page(login.html), The issue i am facing is When ever i am opening the page the complete CSS is not coming for each time one CSS component is coming that's means if there are 4 CSS components as shown below i need to login and logout the page 4times. 5th time i am getting the complete page.
    .ESPS_login_body{
    background-color:#eef1f8;
    margin:0px;
    padding:0px;
    }.ESPS_login_body *{
    margin:0px;
    padding:0px;
    font-family: Tahoma, Verdana, sans-serif;
    .ESPS_login_top_bar{
    background-image: url(../skin_images/login_top_bar.png);
    background-repeat: repeat-x;
    background-position: left top;
    height:30px;
    I am running the application on firefox3.5.3 version.
    Please suggest me
    Thanks,

    Hi,
    Thanks for your quick reply.
    MY CSS File:
    .ESPS_login_body{
    background-color:#eef1f8;
    margin:0px;
    padding:0px;
    }.ESPS_login_body *{
    margin:0px;
    padding:0px;
    font-family: Tahoma, Verdana, sans-serif;
    .ESPS_login_top_bar{
    background-image: url(../skin_images/login_top_bar.png);
    background-repeat: repeat-x;
    background-position: left top;
    height:30px;
    .ESPS_login_bottom_bar{
    background-image: url(../skin_images/login_bottom_bar.png);
    background-repeat: repeat-x;
    background-position: left top;
    height:46px;
    color:#eeeeee;
    text-align:center;
    padding-top:9px;
    font-size:small;
    .ESPS_login_bg{
    background-image: url(../skin_images/login_bg_gradient.png);
    background-repeat: repeat-x;
    background-position: left top;
    background-color:#6882cc;
    height:594px;
    overflow:hidden;
    .ESPS_login_content{
    -moz-background-clip:border;
    -moz-background-inline-policy:continuous;
    -moz-background-origin:padding;
    background:transparent url(../skin_images/login_bg_main.png) no-repeat scroll center top;
    color:#4269b6;
    height:594px;
    overflow:hidden;
    .ESPS_login_content_left{
    height:594px;
    .ESPS_login_content_main{
    height:594px;
    width:650px;
    margin:0px auto;
    padding:20px;
    .ESPS_login_content_main h1{
    margin-top:230px;
    margin-left:125px;
    color:#4269b6;
    .ESPS_login_content_main > h1{
    margin-top:210px;
    div.ESPS_login_from{
    margin-top:20px;
    margin-left:245px;
    .ESPS_login_input{
    background:transparent url( '../skin_images/login_input.png' ) no-repeat scroll center top;
    border:none;
    margin:0px;
    padding-top:4px;
    padding-left:7px;
    width: 193px;
    height: 25px;
    .ESPS_login_submit{
    display:-moz-inline-box;
    display:inline-block;
    cursor:pointer;
    border:none;
    font-size:0;
    line-height:0;
    text-decoration:none;
    font-style:normal;
    vertical-align:middle;
    background: transparent url("../skin_images/login_go_button_i.png") no-repeat top left;
    border: none;
    width: 48px;
    height: 25px;
    margin:0px;
    margin-bottom:17px;
    div > a.ESPS_login_submit{
    margin-bottom:0px;
    .ESPS_login_submit:hover{
    background: transparent url("../skin_images/login_go_button_highlighted_i.png") no-repeat top left;
    .ESPS_login_submit:active{
    background: transparent url("../skin_images/login_go_button_pressed_i.png") no-repeat top left;
    label.ESPS_label{
    display:-moz-inline-box;
    display:inline-block;
    font-weight:bold;
    padding-bottom:8px;
    width:110px;
    margin-bottom:2px;
    div > label.ESPS_label{
    padding-bottom:3px;
    margin-bottom:2px;
    Login Page:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <title>ESPS Login</title>
    <link href="/skins/css/mySkin.css" rel="stylesheet" type="text/css"></link>
    </head>
    <body class="ESPS_login_body">
    <div class="ESPS_login_top_bar">
    </div>
    <div class="ESPS_login_bg">
    <div class="ESPS_login_content">
    <div class="ESPS_login_content_main">
    <h1>External </h1>
    <form name="ESPS_login_form" method="POST" action="j_security_check">
    <div class="ESPS_login_from">
    <label class="ESPS_label">User Name:</label><input type="text" name="j_username" class="ESPS_login_input" onclick="this.value='';"/>
    <label class="ESPS_label">Password: </label><input type="password" name="j_password" class="ESPS_login_input" onclick="this.value='';"/>
    <a id="submit" href="#" class="ESPS_login_submit" onclick="document.ESPS_login_form.submit(); return false;">
    <span> </span></a>
    </div>
    </form>
    </div>
    </div>
    </div>
    <div class="ESPS_login_bottom_bar">&copy;Copyright 2009, DISH Network L.L.C., all rights reserved.
    </div>
    </body>
    </html>
    Please help me

  • Generally when creating a Word file from either a Mac or Win7 pc and opening it on two different machines (either one first) it always prompts that the file is open and will be opened as read only. However opening a CSS file does not prompt that it is alr

    Generally when creating a Word file from either a Mac or Win7 pc and opening it on two different machines (either one first) it always prompts that the file is open and will be opened as read only.
    However opening a CSS file does not prompt that it is already open on or from any machine which is causing code edits to be lost.
    What we found from out testing:
    - The file can be saved from one user to the server and WILL NOT PROMPT on other machines until the saving machine has the Dreamweaver program closed completely
    - The file can be closed and  Dreamweaver minimised to the launch bar but it still will not register on other machines that it has been changed.
    - Also, until the  Dreamweaver program is closed on the machines, it will continue to open it's saved version of the file. 
    Example Scenario:
    - User 1 opens test.css (which is 2000 lines) and adds some code to the end of the file to bring it up to 2500 lines
    - Meanwhile User 2 opens test.css as well (opens as 2000 lines as User 1’s edits have not yet been saved) and adds in code to bring it to 2300 lines
    - User 1 saves his file and closes it - but  Dreamweaver is still open.
    - User 2 also saves his file and leaves  Dreamweaver  open.
    - The server will report the size and last edit of the file the same as User 2 as he was the last person to save it (and if you open from the Win7 Machine it will show as User 2’s 2300 line version)
    - If User 1 then open's the file again (from either the 'recent' in Dreamweaver OR clicking on the file directly in Finder...which version opens.... The version that User 1 saved! Not the true version on the server, but the version that User 1 edited and saved with 2500 lines in it.
    - Same for User 2, he will open 'his' version with 2300 lines in.
    Other information:
    - Files are opened directly from the server
    - Sometimes the users will save incrementally and re-open
    - Most of the time users will save incrementally and keep the files open
    - The users will never not save incrementally and just save when closing the file once finished
    - The users are usually working on the files all day
    - It is always the bottom lines of code that are lost. It could be a case of the two versions being mixed up and cutting off the newly added lines based on the line count (possibly).
    It is as if Dreamweaver is holding a cache of the version locally and then only properly looking back to the server when it has been completely closed. It is very difficult to see how the server is causing such an impact on these files, there are very few logs which are giving any indication to the root cause of the problems.
    Anyone know if this is a known issue?
    Is there a way that there can be a featured implemented on the server that doesn't allow another user to open a file if it is already open on another machine?
    Thanks

    Your server file handling has nothing, and really nothing to do with Adobe software. If files don't get locked for (over-)writing and/or lose connection to the program opening them, then your server is misconfigured. It's as plain and simple and that. Anything from "known file types"/ file associations not being set correctly, MIME types being botched, crooked user privileges and file permissions, missing Mac server extensions, delayed file writing on the server, generic network timeout issues and what have you. Either way, you have written a longwinded post with no real value since you haven't bothered to provide any proper technical info, most notably about the alleged server. Either way, the only way you can "fix" it is by straightening out your server and network configuration, not some magic switch in Adobe's software.
    Mylenium

  • How Do You Add Multiple CSS Rules to Text?

    Hi everyone, I have these css rules in my css styles window they are all assigned to some text in a cell on my page.
    .Def14grey4 <body>
    .def14grey4 a:link <a>
    .def14grey4 a:visited <a>
    .def14grey4 a:hover <a>
    .def14grey4 a:active <a>
    .def14grey4 a:focus <a>
    How do you add (all of) these styles to the text in the first place, I know how to add the first one (.Def14grey4), you select the text in the cell and choose the rule from the drop-down menu in the css panel, but how do you add the other ones to some text as well, so that it can have the same link properties.
    Basically I have some more text elsewhere on the page and want to assign these rules to that as well.
    thanks Gareth

    You would want to change your order as shown here -
    .Def14grey4 <body>
    .def14grey4 a:link <a>
    .def14grey4 a:visited <a>
    .def14grey4 a:hover, .def14grey4 a:focus <a>
    .def14grey4 a:active <a>
    That way, the hover and the focus states are equivalent.
    How do you add (all of) these styles to the text in the first place, I know how to add the first one
    You don't really.  The 4 bottom selectors say -
    "find an element with a class of 'def14grey4', and style any link inside that element this way"
    So, <span class="def14grey4"><a href="whatever.html">Whatever</a></span> would get the pseudo-class styles, as would any of the following -
    <span class="def14grey4"><a href="whatever.html">Whatever</a></span>
    <td class="def14grey4"><a href="whatever.html">Whatever</a></td>
    <p class="def14grey4"><a href="whatever.html">Whatever</a></p>
    <body class="def14grey4"><a href="whatever.html">Whatever</a></body>
    <div class="def14grey4"><a href="whatever.html">Whatever</a></div>
    <strong class="def14grey4"><a href="whatever.html">Whatever</a></strong>
    and so on.  These examples assume that there isn't some other more specific rule that would apply to the same links.  You need to study up on the CSS cascade and specificity....

  • Is there a way to create a CSS image gallery with caption?

    Hi everyone,
    Ive been using the disjoint rollover, but I only have one
    thing that I want to add to it—a caption right underneath an
    image.
    Besides using that Project Seven plug-in, is there a way to
    create an image gallery without using layers? Or is layers the only
    way to do it? All I want (words of doom, huh?) is a thumbnail to be
    able to switch and image and add a caption to it. Can anyone point
    me in the right direction? Or is that Project Seven plug-in deal my
    best bet? What about Set Text of Layer in DW.
    Oh yeah, Im still using DW with CSS sprinkled in..any help?
    Thanks in advance.
    -C

    > Besides using that Project Seven plug-in, is there a way
    to create an
    > image
    > gallery without using layers?
    Of course.
    > What about Set Text of Layer in DW.
    That would do it, and it's not necessary that the layer stay
    a layer after
    you have done it, either. I do this frequently - make a
    layer, apply the
    behavior, and then remove the position:absolute from the div,
    and place it
    where I want it.
    See the demo here -
    http://dreamweaverresources.com/tutorials/settextoflayer.htm
    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
    ==================
    "psypent81" <[email protected]> wrote in
    message
    news:eus555$lac$[email protected]..
    > Hi everyone,
    >
    > Ive been using the disjoint rollover, but I only have
    one thing that I
    > want to
    > add to it?a caption right underneath an image.
    > Besides using that Project Seven plug-in, is there a way
    to create an
    > image
    > gallery without using layers? Or is layers the only way
    to do it? All I
    > want
    > (words of doom, huh?) is a thumbnail to be able to
    switch and image and
    > add a
    > caption to it. Can anyone point me in the right
    direction? Or is that
    > Project
    > Seven plug-in deal my best bet? What about Set Text of
    Layer in DW.
    >
    > Oh yeah, Im still using DW with CSS sprinkled in..any
    help?
    >
    > Thanks in advance.
    >
    > -C
    >

  • Can someone help me understand how ePub CSS @fontface Unicode characters are supported in td , but not in div or other elements?

    Hi,
    I'm working on a project to convert several hundred thousand life sciences articles into epub format, and we have run in to a problem with character entities.
    Being that these are scientific articles, the characters are from a wide range of Unicode charts, and are essential to transmitting the meaning of the data.
    The problem is that in my epub, the character entity inside a table data cell is rendering the @font-face correctly, but inside any other HTML element, the character renders as an empty box on our ipad2s.
    I've placed pre tags in hopes that the unicode will not be rendered in your browser here. The code point in this example is x1d542 just in case.
    So inside div, we see boxes, inside td, we see the character rendered properly.
    <pre>
          <div class="stix">Let &#x1d542; be a field, which will be either the complex numbers &#x02102; or the finite field &#x1d53d;</div>
          <table id="t31" rules="all">
            <tr>
              <td>&#x1d542;</td>
              <td class="stix">&#x1d542;</td>
              <td>U+1D542 MATHEMATICAL DOUBLE-STRUCK CAPITAL K </td>
            </tr>
    </pre>
    My CSS looks like this:
    <pre>
    @font-face {
        font-family: 'STIX';
        src: url('STIX-Regular.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
        unicode-range:  U+02B0-02FF, U+07C0-07FF,  U+0900-097F,U+0F00-0FD8, U+1D00-1D7F, U+1D80-1DBF, U+1D400-1D7FF, U+1E00-1EFF, U+1F00-1FFE,U+2000-206F, U+20A0-20B8, U+20D0-20F0, U+2300,23FF, U+25A0-25FF, U+2600-26FF, U+27C0-27EF, U+27F0-27FF, U+2900-297F, U+2A00-2AFF, U+2B00-2B59, U+2C60-2C7F ;
    @font-face {
        font-family: 'STIX-Math';
        src: url('STIXMath-Regular.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
        unicode-range:  U+02B0-02FF, U+07C0-07FF,  U+0900-097F,U+0F00-0FD8, U+1D00-1D7F, U+1D80-1DBF, U+1D400-1D7FF, U+1E00-1EFF, U+1F00-1FFE,U+2000-206F, U+20A0-20B8, U+20D0-20F0, U+2300,23FF, U+25A0-25FF, U+2600-26FF, U+27C0-27EF, U+27F0-27FF, U+2900-297F, U+2A00-2AFF, U+2B00-2B59, U+2C60-2C7F ;
    .stix   {
            font-family: "STIX", "STIX-Math", sans-serif;
    </pre>
    Is it possible that this is a rendering bug, because the character is rendering in the table cell, but not in other elements?
    Have I missed something obvious?
    Thanks,
    Abe

    I assume you are including the STIX font as part of your epub files?     
    Perhaps the folks who do this blog might be able to help -- they have done some work with font embedding:
    http://www.pigsgourdsandwikis.com/2011/04/embedding-fonts-in-epub-ipad-iphone-an d.html

  • 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.

  • CSS Designer in Depth | Creative Cloud for Web | Adobe TV

    Get an in-depth look at the powerful new CSS Designer tools in Dreamweaver CC. Intuitive visual editing tools help you generate clean, web-standard code and quickly apply CSS properties like gradients and box shadows. You can see the effects on your designs immediately, eliminating tedious tweaking and the need to go back and forth to Code view.
    http://adobe.ly/ZSeWkr

    The new CSS Designer feature in Dreamweaver CC is a very nice addition to the interface’s workflow. However, it’s not best for all workflows, whereby there should still be a non-assisted CSS editor option available, like in CS6, “without” all the new visual designer tools.
    In CS6’s CSS properties editor you can quickly glance at the currently selected element’s CSS properties and directly edit the actual property values in a column format making this a very precise and straightforward workflow process.
    For me, the ability to quickly edit CSS properties by clicking on respective elements in the design view editor is the biggest advantage and real power for using Dreamweaver over notepad type editors. Without this option (when working in split mode), it requires switching back and forth between different style-sheets and code view.
    Though I really like everything else I’ve seen so far, in this latest version, this seemingly small feature restriction will considerably slow down my overall typical workflow process in most cases.  So, until a non-assisted CSS properties editor option is available, I’ll continue using CS6. Please, please fix this soon! Hopefully this is only a short-term oversight and resolved in a very near future update.

  • Using CSS instead of or with library item

    I built my site using Dreamweaver 8. I used the design view
    exclusively. I made a navigation bar as a library item. Utilizing
    rollovers, etc. Now I have learned I should build my site utilizing
    CSS and as was pointed out on this forum to me, to learn CSS and
    HTML.
    I am having a brain freeze. The logic escapes me as to how I
    would build a navigation bar and put it on each page as I did
    utilizing the library function before.
    I am sure for all you pro's this is a really dumb and obvious
    thing but I just don't seem to figure out the logic how to do it. I
    am not talking about the CSS for the behaviors such as hover,
    visited, active. This I know how to do. It is just the ability to
    have a properly designed navbar and be able to put it on every page
    I make.
    Murry "ACE" told me not to use AP and the dreaded mm_menus so
    I am trying to figure this out and build a better more code
    efficient site. Mine works but is quite trashy in the code.

    It can be a bit daunting.
    Try going through this tutorial completely. It's a bit out of
    date (using
    an older version of DW), and still covers the use of tables,
    but it's worth
    reinforcing your basic understandings -
    http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt1.html
    Then I would suggest you do this tutorial -
    Taking a Fireworks comp to a CSS-based layout in Dreamweaver
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt1.html
    http://www.adobe.com/devnet/fireworks/articles/web_standards_layouts_pt2.html
    Finally, to get a grip on how to manage menus across an
    entire site, use
    DW's F1 help about how to use Templates, and server-side
    includes.
    Templates do make your life much easier. I use the following
    scheme....
    First, I mentally separate the page layout into three
    sections:
    1. Stuff that will not change for the life of the site (i.e.,
    the basic
    structural elements)
    2. Stuff that *could* change from time to time (e.g.,
    navigation elements,
    burst advertisements, section-specific navigation, etc.)
    3. Stuff that *will* change from one page to the next
    Then I create a template containing all class1 elements. Next
    I create
    server-side include files containing all class 2 elements and
    place them on
    the template as needed. Note - some of the class 2 elements
    may be
    "section-specific elements", and their placement on the
    template will be
    subject to the next item. Finally, I insert editable regions
    to cover the
    class 3 items, INCLUDING the section-specific navigation.
    This allows me to just cookie-cut the rest of the site. I
    estimate that
    even for fairly large sites, about 80% of my work goes into
    planning and
    creating this template file.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "craigmini" <[email protected]> wrote in
    message
    news:[email protected]...
    >I built my site using Dreamweaver 8. I used the design
    view exclusively. I
    > made a navigation bar as a library item. Utilizing
    rollovers, etc. Now I
    > have
    > learned I should build my site utilizing CSS and as was
    pointed out on
    > this
    > forum to me, to learn CSS and HTML.
    >
    > I am having a brain freeze. The logic escapes me as to
    how I would build a
    > navigation bar and put it on each page as I did
    utilizing the library
    > function
    > before.
    >
    > I am sure for all you pro's this is a really dumb and
    obvious thing but I
    > just
    > don't seem to figure out the logic how to do it. I am
    not talking about
    > the CSS
    > for the behaviors such as hover, visited, active. This I
    know how to do.
    > It is
    > just the ability to have a properly designed navbar and
    be able to put it
    > on
    > every page I make.
    >
    > Murry "ACE" told me not to use AP and the dreaded
    mm_menus so I am trying
    > to
    > figure this out and build a better more code efficient
    site. Mine works
    > but is
    > quite trashy in the code.
    >

Maybe you are looking for

  • Absence quota prorate by monthly basis

    Hi Experts, I have an issue regarding the absence quota for the new joiner or leaver. My client wants the leave earned to be given upon completion of the month. My current configuration is base on calendar days. For example, when a new joiner join th

  • How to find out the number of occurence of special character

    Hi , I have a string coming coming in I/p which is like '1;2;100;201;' I need to break up this string and run my process for each value ( i.e for 1,2,100 and 201). How i can know the count of number of occurences of ';' character? How i can loop so t

  • Accounting Effect for Capital Goods Purchase

    Hi, Iam using SAP 8.8 PL 13. How does the accounting takes place in case of an Item marked as Fixed Asset in Item Master? In GL account determination I have assigned Capital Cenvat Credit  A/c. for Capital Goods on Hold A/c. Suppose I purchase an Fix

  • OSB+how to change content type header in http transport header.

    I have a requirement where I need to change the value of: <http:Content-Type>text/xml; charset=utf-8</http:Content-Type> to the end system specific like: <http:Content-Type>application/abcd-cvs-v1+xml; </http:Content-Type> and the http:accept value t

  • Automatic update deployment

    Hi, After I have understand the manual process of creating a new deployment, and deploy it to a collection, I try to learn the automatic process. I have create a new rule, and configured all the relevent details. When I run it, the updates are not do