Help with bullet style in external CSS

I'm learning Dreamweaver after using Frontpage. I'm also kind
of new with external stylesheets. And am stuck on formatting
bullets. I can't seem to figure out the code for a bullet style and
only find code for inline style sheets.
More importantly, I can't create leading between the bullets.
In FrontPage, I just set paragraph spacing before and after (for
instance, 6 pt). Would it be margin-bottom? Anyway, here is the
code I have, but when I apply it, no bullets appear.
.bullet {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
text-align: left;
list-style-position: outside;
list-style-type: disc;
Thanks, Susan

The CSS rule is the same whether it is use inline, in the
<header> part
of the document or an external stylesheet.
In your CSS sample below, you defined a class with the proper
declarations, but most likely you did not apply that class to
your list
in the HMTL.
<ul class="bullet">
<li>......
If every list is styled the same way, you can simply
(re)define the ul
tag in your stylesheet.
ul {font-family....}
If you want leading between the bullets there are several
different
possibilities like applying padding, margin using line-height
but in any
case you have to apply it to the list items - <li>
To go with your example, the CSS would be:
.bullet li {padding: 6pt 0}
Be careful with using pt as a measure on screen though.
Although you are
permitted to doing so, it is more advisable to use pixels or
event
better a relative measure such as em.
Anurag
s3r3nity1 wrote:
> I'm learning Dreamweaver after using Frontpage. I'm also
kind of new with
> external stylesheets. And am stuck on formatting
bullets. I can't seem to
> figure out the code for a bullet style and only find
code for inline style
> sheets.
>
> More importantly, I can't create leading between the
bullets. In FrontPage, I
> just set paragraph spacing before and after (for
instance, 6 pt). Would it be
> margin-bottom? Anyway, here is the code I have, but when
I apply it, no bullets
> appear.
>
> .bullet {
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 12px;
> color: #000000;
> text-align: left;
> list-style-position: outside;
> list-style-type: disc;
>
> Thanks, Susan
>

Similar Messages

  • Save as SVG, with character styles included as CSS classes? (CC)

    Hi, I know that
    a) Character styles in Illustrator CC are saved as CSS classes in the CSS properties menu, with appropriate style info;
    b) These classes can be exported to a CSS file from the CSS properties manual;
    c) Graphic styles can also be saved as CSS classes; but
    d) When saving to SVG (with Style Elements option) the graphic style classes are included in the SVG code, but NOT the character style classes. Instead, it uses classes like ".st0", ".st1", etc., which separate each styled attribute (font-family, size, etc.) into its own class.
    Is there any way around this problem, short of extensively editing the svg code by hand later? The end result we're looking for is an SVG where text has classes assigned, based on character styles.  (Ideally we'd then link to an external style sheet in order to modify based on the end use of the SVG. So for example a graphic with .textBold and .textRegular, where those classes are later assigned different values based on the delivery device.)
    Has anyone else dealt with this issue?
    Thanks!

    Hi Ianmcarey,
    Thanks for the detailed Explanation. We will investigate this Requirement of Exporting Character style classes in the SVG code.
    Thanks and Regards,
    Mohit Gupta.

  • Need help with pictures on an external HDD and windows labtop to Ipad3

    Hallo everybody!
    This week (I finally) bought an Ipad 3 and an Apple TV!
    For the time being I still have a windows labtop and an external HDD full with photo's.
    The ICloud software for windows has been installed because I would like to stream the pictures from this external HDD to my Ipad and then ofcourse on my flatscreen TV (via Apple TV). And ofcourse back, when I have taken a photo or a movie on the Ipad 3.
    I would appreciate some help with the following questions:
    do I have add all pictures from the HDD into a new map on the windows labtop. So that via Icloud the contain could become 'in the cloud'.
    or do I have to add all the pictures from the HDD into the Itunes map on the windows labtop.
    I have connected the Ipad to the windows labtop and via Itunes I have synchroniced a lot of pictures to the Ipad. I asume these are copies? And is it possible to remove them from the Ipad, because it will take a lot of memory (currently already 35 GB from the 64 GB).
    Well I hope somebody could help me.
    Many thanks in advance!
    Ronald from the Netherland

    I just found out that ICloud isen't really a storage place for photo's. Just a passing throw station to your other devices.

  • InDesign CS2 Help with Bullets

    Hi,
    I'm having a small issue with bullets in InDesign CS2.
    I have them all aligned correctly except I can't seem to figure out how to leave a line space in between each bullet...
    eg.
    lsekfjsldkfjsdjf
    slkdjskdjlksjd
    I have my text justified with the last line aligned to the left, I tried deleting the bullet and putting in a soft return but this makes the last line of each bullet stretch right to the end of the line which looks funny.
    Does anyone know how to fix this? I hope that makes sense... if it doesn't email me at [email protected] and I will send you a screenshot.
    Thanks in advance,
    Jen

    The problem, as I see it, is that when you insert an extra return
    between automatically bulleted items, you get an automatic bullet that
    you don't want. The simple fix is to put in an extra return but turn off
    Bullets for that paragraph (yes, anything that ends with a return,
    including just an empty return, is a paragraph in this case).
    A better way to create vertical space is to use Space Before instead of
    spacing with extra returns. Space Before or Space After the paragraph
    will disappear when the space happens to fall at the top or bottom of a
    page.
    Even better would be to define your bulleted list item in a style,
    complete with bullet and space above.
    Kenneth Benson
    Pegasus Type, Inc.
    www.pegtype.com

  • Problem with elements/text linking to styles in external css file

    Hi,
    the project I am working on is using a default.css and I would like to assign styles from the file to elements in edge - how can I do that?
    I already tried the "class" setting in the GUI next an element but the elements do not use the styles defined in the default.css.
    The default.css is linked in the html file properly. In the js file which edge creates I see that the value  userClass: 'slideTitle' is assigned and slideTitle is defined in the default.css.

    Use yepnope like this:
    yepnope(
        nope:[
        // include your css file path here.
            'css/yourcssfile.css',
        complete: init
    function init() {
      //whatever you need here

  • Help with dynamic text and and css !

    My second question of the day.
    I'm trying to build a feature in my app in which the user can
    hide/reveal
    bolding and or
    italics and or
    underlining. The text is being loaded in from an xml file
    and I was thinking about styling it with css in order to get the
    underlining. My problem is that the only way I can think about
    pulling this off is to have a css style sheet that has a defined
    bold,italic and underline class defined- - then another one that
    just has a italic and underline class defined -- then another one
    that has just a bold and underline class defined . . . and so on
    and so on. You can see why I would prefer a much more streamlined
    system. Unfortunately my experience with dynamic text styling is
    somewhat limited. Hopefully someone can help me out here.

    Perfect. I knew it was some little snippet that I was
    forgetting. I made a temporary fix of creating a 0% alpha box over
    the button like a fake click area above the text, and that worked
    but I know that it was a half-arsed way of working around it.
    Thanks.

  • Help With Airport Extreme and External Hard Drive

    I just purchased the Airport Extreme and I couldn't have been happier. I have attached my western digital external hard drive, but I have run into a slight problem/dilemma which I'm hoping someone who is apple savvy can help me out.
    I live in a house with a couple of other guys and so I put all of my movies and media onto the hard drive so we can stream it throughout the house, but how do I make sure that someone won't accidently delete the files (The copies on the hard drive are the only ones I have)? I have tried to right click "get info" and change the sharing & permissions properties on the folders that I don't want deleted, but it doesn't save the changes or even allow me to select another option other than Read & Write. I formated the hard drive with the disk utility before I connected it to the AirPort so I know that it has nothing to do with the format of the drive. I also tried to create different user accounts for each roomate so that they could view the files (Read Only) but I get an error message explaining that if I continue, the contents of the hard drive will not be accessible. I'm sure its something simple but I'm obviously missing it.
    Thanks!

    Airport Utility under Disks/File Sharing has guest access rights.

  • Need help with iMovie storage on external Hard drive

    Is there any external HD that is fast enough to run iMovie? I just bought an 80gig ext. hard drive trying to solve that nasty memory problem that iMovie HD has... Well iMovie will not run because it's not fast enough, and the video clips play slow and choppy.. My question is does anyone know of a brand type or speed of ext. hd that is fast enough.. HELP!!! I need to finish this video pronto!
    Thanks
    ps.. the HD i bought was an iomega 80gig HD with usb 2 and 7200 rpm

    Eric, for a few dollars/Euros more (..or whatever your currency is..) you could buy a FireWire enclosure ..that's just a box with a socket or two on the back. It's not a drive, but just a box to put the disc drive inside, and it's complete with FireWire connections.
    Then unscrew the Iomega 80GB USB box, remove the 7200rpm 80GB disc drive, and insert it into the FireWire box, and connect up the multi-pin connector and power connector between the FW box and the hard drive. Connecting the drive is pretty simple. Look at "Mounting the drive into the bay", about halfway down this page.
    Hey Presto! ..You've now got a working 80GB 7200rpm drive ..plenty fast enough for iMovie.. which can be connected to your iMac via FireWire!
    Your disc drive is fast enough ..it's just your USB connection which is too slow; so just change the way that your drive is attached to the Mac, so that it uses FireWire.
    Suitable boxes are this kind of thing.
    It's simple: I have half a dozen assorted drives I've slotted into new bare-bones 'enclosures', and they all work fine by just plugging the enclosure (box) into a Mac FireWire port.
    Quick 'n' simple, and cheap!
    NOTE: Open up your Iomega box first, so that you can check what size of drive is inside, and thus what size of FireWire enclosure you need. A small 2.5" drive will certainly fit into a 5" enclosure, but a 5" drive obviously won't fit in a 2.5" enclosure! Though something like a WiebeTech DriveDock ..or the bigger and pricier ComboDock.. are open-ended, so they'll take any physical size of drive.

  • Help with creating a menu in CSS

    I'm new to creating CSS, but as I'm a designing a huge
    website, I know that the CSS will help me out some.
    I'm using a CSS that came with Dreamweaver - a 2 column fixed
    with header and footer.
    My problem is, I need to insert a section for a menu bar
    between the header and the side bar/main content.
    If someone could help me out with where and what code to
    enter into my css, I would really appreciate it.
    Below is my CSS as it stands:

    Well they are menus from En not just text in Ae but I see what your saying what I was able to do is put a new background layer onto and use a couple of masks that changed shape with directional blur and added a gradient wipe; it seems to work well enough for me.  Thank you for the help.

  • Help with creating hyperlinks in formatted CSS text

    I'm having difficulty adding links using Dreamweaver. I first
    format the text with a CSS style, then use the Properties window to
    add the hyperlink (or Insert>Hyperlink menu). It creates this,
    <p class="linkbodyleftcol"><a href="
    http://www.amcc.com">AMCC</a></p>
    However, when I place the cursor on AMCC in the design
    window, most of the CSS styles I see in the CSS Styles menu are
    crossed out with a message "...does not apply to your selection
    because it is not inherited. It is applied to a closing tag."
    To correct this, I modify the code to:
    <a href="
    http://www.amcc.com"><p
    class="linkbodyleftcol"AMCC</p></a>
    And this clears up the error. However, there must be a more
    efficient way to add links while retaining CSS formatting. Could
    someone point out a better method?
    Best regards, -gary

    But wouldn't this still entail adding a hyperlink in Design
    view then editing this code in Code view?
    Doesn't DW allow one to enter a hyperlink in Design view
    while maintaining CSS? Seems hard to believe something so simple
    would require going into the code, since CSS and hyperlinks are two
    key ingredients in web design.

  • Please help with error message invoking external service from BPEL

    Yes, I'm new to Oracle SOA Suite and BPEL Process manager. I've searched the forums, OTN, and Google and have not found any description of this error message:
    "oracle.fabric.common.FabricException: Number of SOAP body elements and parts do not match in operation: <operation-name>"
    Using JDeveloper 11.1.1.2.0 and WebLogic/SOA 10.3.2.0.
    The BPEL process was built completely using JDeveloper's graphical tools... I haven't done any raw editing of the BPEL files yet. What types of things might I possibly be doing wrong that would cause this error to occur? Any idea what two things the server is comparing and deciding that there's a mismatch? It doesn't look like it is even attempting to invoke the external service, but bailing out before that, thinking that it's going to send bad data. Below is a bit more detail.
    Also, I loaded up the WSDL (same one that I gave to JDeveloper) into SOAPUI. Then I took the payload that SOA was about to send (see below) and pasted it into SOAPUI. SOAPUI didn't complain and the target web service accepted the message and produced a "success" response. It looks like the payload is correct, so I don't know why SOA is complaining.
    Thanks for any help you can offer.
    =====================================================
    Faulted while invoking operation "UpsertEmp" on provider "SiebelUSEmployeeIntegration".
    <messages>
    <input>
    <UpsertEmpInput>
    <part name="SiebelMessage">
    <SiebelMessage>
    <ns1:USEmployment>
    <ns1:globalId>123456abcdef</ns1:globalId>
    <ns1:employeeId>000123456</ns1:employeeId>
    <ns1:effDt>1/1/2009</ns1:effDt>
    <ns1:emplStatus>A</ns1:emplStatus>
    <ns1:supported>N</ns1:supported>
    <ns1:employed>Y</ns1:employed>
    <ns1:activeStatus>Y</ns1:activeStatus>
    <ns1:hrEditOnly>Y</ns1:hrEditOnly>
    <ns1:paygroup/>
    <ns1:statusCode/>
    <ns1:origHireDate/>
    <ns1:termDate/>
    <ns1:latestHireDate/>
    <ns1:locationCode/>
    <ns1:locationDescr>Somewhere</ns1:locationDescr>
    <ns1:positionCode/>
    <ns1:jobCode/>
    <ns1:jobDescr/>
    <ns1:supervisorEmplid>000654321</ns1:supervisorEmplid>
    <ns1:deptCode>ITG</ns1:deptCode>
    <ns1:deptDescr>Information Technology Group</ns1:deptDescr>
    <ns1:ministryCode/>
    <ns1:ministryDescr>Core Services</ns1:ministryDescr>
    <ns1:subministryCode/>
    <ns1:subministryDescr>Information Technology Group</ns1:subministryDescr>
    <ns1:wwcFreeSubFlag>N</ns1:wwcFreeSubFlag>
    <ns1:lakeHartMC>1234</ns1:lakeHartMC>
    <ns1:testFlag>Y</ns1:testFlag>
    </ns1:USEmployment>
    </SiebelMessage>
    </part>
    </UpsertEmpInput>
    </input>
    <fault>
    <bpelFault>
    <faultType>
    <message>0</message>
    </faultType>
    <remoteFault>
    <part name="summary">
    <summary>oracle.fabric.common.FabricException: Number of SOAP body elements and parts do not match in operation: UpsertEmp</summary>
    </part>
    <part name="detail">
    <detail>Number of SOAP body elements and parts do not match in operation: UpsertEmp</detail>
    </part>
    </remoteFault>
    </bpelFault>
    </fault>
    <faultType>
    <message>0</message>
    </faultType>
    </messages>

    Welcome to BPEL. Take a moment, and write "it's a namespace issue" on a sheet of paper. Post it near your monitor. It won't always be a namespace issue, but it's usually a good thing to suspect first! Is the namespace prefix ns1: defined somewhere? Does your XML that is being sent really match what the WSDL has for input to the UpsertEmp operation? The namespaces for each element level in the XML need to match, not just the lowest level.
    When problems like this get really sticky, you can use TCP tunneling (obtunnel shell?) to capture what is really being sent to the server, and compare that to what is sent from SOAPUI. That's more useful if it's a subtle header problem, but you may get better error messages if you catch the BPEL message and send it using SOAPUI.
    Good Luck, Andy

  • Help with iTunes library on external hard drive

    Hi!
    I have a new computer and I don't want to put anything in it but the programs I need. When it comes to movies, music, etc. I have an external hard drive.
    Now, I want my iTunes to read the music from that hard drive, and, when I download something (more music, podcasts, apps, etc.) I'd like them to go straight to the folder "iTunes" that I created in that hard drive.
    I had a look at a few pages and people where only talking about creating back-ups, but I don't need that, because I have a second HD that I'll use for that.
    Someone told me to do this:
    Go to the File Menu, then choose Add Folder to Library. Then navigate to your external drive and folder where your music is to add it. Then all you have to do is download your new stuff to that folder.
    I did that and the podcasts I had in the external HD showed up there, but when I downloaded a new one, it downloaded onto my computer. What I want to do is have my iTunes library on an external HD and when I download from iTunes I want it to go straight to that external HD so I don't clog up my computer.
    I have iTunes 10.6. something =)
    Thank youuuuu very much!!!! =)

    As long as you don't have an existing library that is synced with a device or holds oodles of carefully crafted playlists, ratings etc. then...
    Hold down shift as you start iTunes. You should get an option to choose or create a library. Click create, browse to root of the external drive and click save so that your library is say X:\iTunes where X: is the letter of your external drive. All new content downloaded to the library will stay on the external drive.
    See this user tip for a backup strategy.
    tt2

  • Need Help with Font - Style -  Size

    how do you keep these the same size and style on all pages?
    example font and size will be the same but style wont. when i try
    set the same style the size changes, and if you set size the style
    changes.

    font-style:normal;
    It's not necessary to restate defaults.
    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
    ==================
    "d_simpson" <[email protected]> wrote in
    message
    news:gk99ca$bcc$[email protected]..
    > Hi Joseph,
    > The best way to keep the same font size and style would
    be in a css file.
    >
    > Example:
    > body { font-family: Helvetica, sans-serif;
    font-size:10px;
    > font-style:normal; }
    >
    > This will then be applied to all pages.
    >
    >

  • Need help with myspace style mp3 player

    hi guys,
    i am building a flash player similar to the one on
    myspace.com.
    i need the player to be able to stream an mp3 file from a
    database depending on which viewprofile page the user is looking
    at.
    the only buttons that the player will have are just play and
    stop although i would like it to have a progress bar too if its not
    too difficult to do.
    can anyone help me or at least get me started?
    thank you very much and i hope to hear from you.
    all the best,
    mark

    to get started you should familiarize yourself with the sound
    class (which you'll use to load and control your mp3) and the
    loadvars class (which you use to access the data in your
    database).

  • Help with itunes librairy and external hard drive

    My question is that , when I buy an external hard drive to save my movies, music, shows, etc off of itunes store, then how do I save them to the external drive automatically? When I download the itunes store, or librairy, on my computer should it be downloaded to my computer, or the external hard drive? I'm confused.

    This article should help...
    iTunes: Moving your iTunes Music folder
    http://docs.info.apple.com/article.html?artnum=301748
    Patrick

Maybe you are looking for

  • CE: Autorec for Multi Bank Stmt Lines to one Receipt in Open Interface

    We have a requirement to auto reconcile multiple bank statement lines to a single receipt in the Open interface table. We are on 11.5.10.2 and unable to autoreconcile. Could some one tell me how can we automatically reconcile two bank statement lines

  • How can i print data in bi publisher template across wise

    Hi, Please let me know how can i print data in bi publisher template across wise. eg. In my C1 field there is a data coming like S JR MR i want to print this filed S JR MR Thanx Arjun

  • How to activate bonjour

    My old laptop has lots of music that my new laptop doesn't have when I log into itunes.  Even though my old laptop was set up for sharing it appears that it is missing bonjour.  How do I activate this?

  • Plant on WE doc type

    Hi gurus please help me with the below issue Let me explain in detail we create  2 Purchase orders. during intracompany stock transfer- STO. 1st PO We have a delivery of goods from one plant to another with a PO from receiving plant to supplying plan

  • Does not implement javax.servlet.Servlet

    I have a filter class public class SessionFilter implements Filter{ public void init(FilterConfig filterConfig) throws ServletException // do nothing here public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOExcep