Styling references

I'm very new to InDesign, so please excuse me if I've missed something.  I'm trying to insert references into a document and have a table at the end like this
Branke 1998
Jurgen Branke. Creating robust solutions by means of evolutionary algorithms. In [Eiben et al. 1998], pages 119–128.
Adami 2002
Christoph Adami. What is complexity? BioEssays, 24:1085–1094, 2002.
And then I use the cross reference thing to insert the paper name as required.  The references should be styled like this
... it is important to take these ideas into account to get a robust solution. [Branke 1998]
Or, for two or more references
... it is important to take these ideas into account to get a robust solution. [Adami 2002, Branke 1998]
Styling the references to include the surrounding square brackets is obviously possible via a reference style, but that's not quite what I'm trying to do here.  What I think I want to do is define a conditional character style (or perhaps reference style) that inserts the opening bracket for the first item, the closing bracket after the last item and a comma after all items that aren't the last item.  But I don't seem to be able to do that because, as far as I can see
- GREP styles are only supported on paragraphs, not characters or references
- GREP styles can't work with styles as variables
- Only reference styles will add extra text surrounding the styled section
Is this actually possible because I've overlooked something big and obvious, or should I just give up on this one?
Thanks for any help.
PS I've just tried, and it turns out to be easy in CSS
        ul.References li { display: inline; }
            ul.References li:first-child:before { content: "[" }
            ul.References li:after { content: "," }
                ul.References li:last-child:after { content: "]" }

meloncholy. wrote:
I'm very new to InDesign, so please excuse me if I've missed something.  I'm trying to insert references into a document and have a table at the end like this
Branke 1998
Jurgen Branke. Creating robust solutions by means of evolutionary algorithms. In [Eiben et al. 1998], pages 119–128.
Adami 2002
Christoph Adami. What is complexity? BioEssays, 24:1085–1094, 2002.
And then I use the cross reference thing to insert the paper name as required.  The references should be styled like this
... it is important to take these ideas into account to get a robust solution. [Branke 1998]
Or, for two or more references
... it is important to take these ideas into account to get a robust solution. [Adami 2002, Branke 1998]
Since the author and year are either individual paragraphs or a single wrapped paragraph (can't tell from the example), you already have to create a cross-reference to each author manually. Although it's not a smart-parsing automation solution, I think you can do this by creating cross-reference formats like "[<reftext>]" or "[<reftext>," or "<reftext>," or "<reftext>]" and apply the appropriate ones as you build the references from their sources.
HTH
Regards,
Peter Gold
KnowHow ProServices
Message was edited by: [email protected]
Also, submit a feature request at: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Similar Messages

  • Styling table rows in 8

    Is there a way to apply CSS to table rows (and/or cells) in JavaFX 8?
    I used DataFX' CSSTableRow in 2.2. but that doesn't seem to be compatible with 8.

    See related sample for JavaFX TableView row highlighting sample using table row apis and css.
    Styling tables is tricky as they have all of these complicated style rules for subtle combinations like selected and focused or selected and not focused or hovered, etc.  You can do basic styling by overriding those subtle styles, but if you want to keep those subtle styles, it becomes difficult (at least for me).
    Source code for modena.css is available and a the best styling reference for these kind of complicated things.
    You can either:
    1. copy and paste style rules from modena and change them.
    or
    2. override css paint constant values for your table:
    .table-row-cell {
       -fx-control-inner-background: mistyrose;
       -fx-text-background-color: coral;

  • Cross reference stream

    Hello!
    I'm in real trouble, and I think that the answer is very close to me, but I can't get it by myself...
    Here is my problem:
    I'm currently improving the PDF parser that I've made, adding support for cross reference streams. After a careful reading of the ISO 32000 specification (with PDF 1.7 in background), I've wrote a piece of code that decode the stream and build the corresponding objects (I use Java).
    But the decoded values are meaningless, and I don't understand why!
    The data are like that:
    filter predictor: 12
    encoding : Flate
    fields length : 1 2 1 (this is the W entry values)
    column size : 4
    I assume that there is one color per pixel formed by one byte.
    First, I 'deflate' the data, then 'unfilter' them. Both operations look ok as I've made test for the Flate encoding (ok), and the for the filter I've use it with PDFBox source (and my work unfiltered well what PDFBox filtered...).
    Note that I compared my outputs with those produced by PDFBox, and they are the same... Something may be wrong in the parameters I use, but I no idea now...
    I think I missed out something as I read incorrect data as entry type 18...
    I don't know where to go now, after a whole week of work!
    If any have an idea, I'd be grateful to hear it!

    This is ready algorithm to read PNG predictor styled Cross Reference Stream:
    1. You need to read from PDF three variables: /Columns 5/Predictor 12 and /W[1 3 1] and of course stream
    2. Deflate (encode) stream via zlib (without passing anything more than stream)
    3. Divide encoded stream to rows, but length of each rows must be one bigger than columns variable (in this case is 6) because first value is type xref row
    6. rows without first row go to UNprediction with this algorithm:
    def self.do_png_post_prediction(data, bpp, bpr)
            result = ""
            uprow = thisrow = "\0" * bpr # just zero fill (byte zero - not char zero)
            ncols = data.size / bpr
            ncols.times do |col|    # just for each rows
              line = data[col * bpr, bpr]
              predictor = 10 + line[0]
              for i in (bpp..bpr-1) # just for each values of row without first value
                up = uprow[i]
                left = thisrow[i-bpp]
                upleft = uprow[i-bpp]
                case predictor
                  when PNG_NONE
                    thisrow = line
                  when PNG_SUB
                    thisrow[i] = ((line[i] + left) & 0xFF).chr
                  when PNG_UP
                    thisrow[i] = ((line[i] + up) & 0xFF).chr
                  when PNG_AVERAGE
                    thisrow[i] = ((line[i] + ((left + up) / 2)) & 0xFF).chr
                  when PNG_PAETH
                    p = left + up - upleft
                    pa, pb, pc = (p - left).abs, (p - up).abs, (p - upleft).abs
                    thisrow[i] = ((line[i] +
                      case [ pa, pb, pc ].min
                        when pa then left
                        when pb then up
                        when pc then upleft
                      end
                    ) & 0xFF).chr    # AND 0xFF is very important, without this values growing extremely fast
                else
                  puts "Unknown PNG predictor : #{predictor}"
                  thisrow = line
                end
              end
              result << thisrow[bpp..-1]
              uprow = thisrow
            end
            result
          end
       7. Take bytes from UNpredicted rows, and in this case
       1st byte first byte is type
       2nd byte    
       3rd-5th - is this what You want - offset in decoded PDF to objects (Xref table): offset = 2^9*5th + 2^8*4th + 3rd

  • Cross Reference, Paragraph Style conflict?

    I'm created an epub file and have a cross reference for one of my chapter titles. When I export it to ADE the final product has the cross reference in the file but the paragraph style for the text that I linked lost all of it's styling somehow. The paragraph style is supposed to be centered and have space after it but it is completely gone but the code is still in the xhtml file.
    I have opened the xhtml file and cannot see where the issue is. Has anyone else had this problem exporting from CS4? If so, how do you fix it?
    Thank you so much!

    According to the FM7 Help, the variables for background text frame use might be:
    <$paranumonly[paratag]>
    to pick up the first instance on a page, and
    <$paranumonly[+,paratag]>
    to pick up the last.
    The "+," bit is the key. I've never tried it myself.
    This presumably also assumes that the paras of interest all have the same format name.

  • What is the correct way to add styling to drag-and-drop created calendars?

    I have a working instance of a rich client calendar. I generated the view with the required fields (start, stop, provider, ...), put it into the App Module, and dragged it onto a JSF page to create a calendar.
    Next I created an activityScope object in a class called CalendarBean (no inheritance)
    Class CalendarBean()
    private HashMap<Set<String>, InstanceStyles> activityColorMap;
    +..+
    +public CalendarBean() {+
    super();
    activityColorMap = new HashMap<Set<String>, InstanceStyles>();
    HashSet setEd = new HashSet<String>();
    HashSet setLen = new HashSet<String>();
    setEd.add("Work");
    setLen.add("Home");
    activityColorMap.put(setEd, CalendarActivityRamp.getActivityRamp(CalendarActivityRamp.RampKey.ORANGE));
    activityColorMap.put(setLen, CalendarActivityRamp.getActivityRamp(CalendarActivityRamp.RampKey.RED));
    +}+
    +}+
    Next, I linked this up as a backing bean and associated the ActivityStyles of CalendarBean to it:
    +#{backingBeanScope.calendarBean.activityColorMap}+
    I populated some records in the database with properties "Work" and "Ed', but they show default blue.
    As I understand it, I need to do something with the getTags() method of the underlying CalendarActivity class, but I'm not quite sure how to do that.
    Took a stab at creating a class, CalendarActivityBean, that extended CalendarActivity, and pointed all the CalendarActivity references I had to the new class, but it didn't seem to fire (in debug), and I got into trouble, when inserting records, with
    public void calendarActivityListener(CalendarActivityEvent calendarActivityEvent) {
    currActivity = (CalendarActivityBean) calendarActivityEvent.getCalendarActivity();
    being an illegal cast
    What is the correct way to add provider-based styling to drag-and-drop create calendars?
    Ed Schechter

    A colleague of mine was kind enough to solve this:
    The calendar has ActivityStyles property = #{calendarBean.activityStyles}
    CalendarBean looks something like this:
    package com.hub.appointmentscheduler.ui.schedule;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Set;
    import oracle.adf.view.rich.util.CalendarActivityRamp;
    import oracle.adf.view.rich.util.InstanceStyles;
    +public class CalendarBean {+
    private HashMap activityStyles;
    private String dummy;
    +public CalendarBean() {+
    +// Define colors+
    activityStyles = new HashMap<Set<String>, InstanceStyles>();
    HashSet setPending = new HashSet<String>();
    HashSet setArrived = new HashSet<String>();
    HashSet setApproved = new HashSet<String>();
    HashSet setCompleted = new HashSet<String>();
    setApproved.add("APPROVED");
    setPending.add("PENDING");
    setArrived.add("ARRIVED");
    setCompleted.add("COMPLETED");
    activityStyles.put(setApproved, CalendarActivityRamp.getActivityRamp(CalendarActivityRamp.RampKey.GREEN));
    activityStyles.put(setPending, CalendarActivityRamp.getActivityRamp(CalendarActivityRamp.RampKey.ORANGE));
    activityStyles.put(setArrived, CalendarActivityRamp.getActivityRamp(CalendarActivityRamp.RampKey.PLUM));
    activityStyles.put(setCompleted, CalendarActivityRamp.getActivityRamp(CalendarActivityRamp.RampKey.LAVENDAR));
    +}+
    +public void setactivityStyles(HashMap activityStyles) {+
    this.activityStyles = activityStyles;
    +}+
    +public HashMap getactivityStyles() {+
    return activityStyles;
    +}+
    +}+
    Now, go into the Bindings tab on the calendar page, double click the calendar binding, and specify the column you've defined as the calendar's Provider in the Tags dropdown.
    Should show colors.

  • TOC and Cross reference bookmarks

    Hi. I recently finished work on a book that had front matter containing a brief TOC and a detailed TOC. The book also contained individual TOCs at the beginning of each chapter.
    I updated all numbering across the book files before generating the TOCs in the front matter, then generated the brief and detailed TOCs using my TOC Styles. However, I assigned cross references for the individual chapter TOCs. May not have been the best choice.
    Because there was special styling for some of the front matter TOC entries that wasn't easily specified using just the TOC Styles, I cut and pasted groups of entries from the generated TOC on the pasteboard into a new frame on the page. I checked in Story Editor to ensure that the invisible markers for the TOC entries had been copied into the new frame.
    When I exported the files to PDF, the TOC entries no longer pointed to the correct pages. They simply pointed to the first page of the PDF when clicked. Furthermore, no bookmarks showed up the TOC entries in the Bookmarks panel, even though I had "Create PDF Bookmarks" checked in my TOC Styles.
    I have three questions, then:
    --Is there any way to reclaim the behavior of the TOC bookmarks, and their display in the Bookmarks list of the PDF, if the entries are copied and pasted into a new frame in InDesign, without doing this manually in Acrobat Pro?
    --Is there any way to get cross references to display as bookmarks in a PDF, assuming that I needed to make individual PDFs of each chapter, without doing this manually in Acrobat Pro?
    --I'm betting that all files should be exported from InDesign as a single PDF in order for all TOC and cross reference links to work properly, without manual intervention in Acrobat Pro? If so, and manual intervention is required, is this accomplished by cataloging/indexing in Acrobat Pro?
    I need to be able to pass this information along to a publisher who is now requiring all of their compositors to submit bookmarked PDFs with their printer files. I'm pretty sure I know the answer to this one, but I would like verification from the pros here. Thanks!

    Hi. I recently finished work on a book that had front matter containing a brief TOC and a detailed TOC. The book also contained individual TOCs at the beginning of each chapter.
    I updated all numbering across the book files before generating the TOCs in the front matter, then generated the brief and detailed TOCs using my TOC Styles. However, I assigned cross references for the individual chapter TOCs. May not have been the best choice.
    Because there was special styling for some of the front matter TOC entries that wasn't easily specified using just the TOC Styles, I cut and pasted groups of entries from the generated TOC on the pasteboard into a new frame on the page. I checked in Story Editor to ensure that the invisible markers for the TOC entries had been copied into the new frame.
    When I exported the files to PDF, the TOC entries no longer pointed to the correct pages. They simply pointed to the first page of the PDF when clicked. Furthermore, no bookmarks showed up the TOC entries in the Bookmarks panel, even though I had "Create PDF Bookmarks" checked in my TOC Styles.
    I have three questions, then:
    --Is there any way to reclaim the behavior of the TOC bookmarks, and their display in the Bookmarks list of the PDF, if the entries are copied and pasted into a new frame in InDesign, without doing this manually in Acrobat Pro?
    --Is there any way to get cross references to display as bookmarks in a PDF, assuming that I needed to make individual PDFs of each chapter, without doing this manually in Acrobat Pro?
    --I'm betting that all files should be exported from InDesign as a single PDF in order for all TOC and cross reference links to work properly, without manual intervention in Acrobat Pro? If so, and manual intervention is required, is this accomplished by cataloging/indexing in Acrobat Pro?
    I need to be able to pass this information along to a publisher who is now requiring all of their compositors to submit bookmarked PDFs with their printer files. I'm pretty sure I know the answer to this one, but I would like verification from the pros here. Thanks!

  • Displaying Styled HTML in a frame

    Hi. I'm not sure if this is the right forum to go to, but anyway.
    I have a styled html page. And with styled, I mean I'm using a css stylesheet on it. I want to display this page inside a JFrame. This is supposedlly easy and uncomplicated according to suns javadoc. I can choose to use either a JEditorPane or a JTextPane. Set the content type and use the .setPage method to load the url of the page to be displayed. The page is displayed, but without any styling.
    I've tried to have the stylesheet inside the html document, and as a linked reference. But the same result is displayed. Everything within the <STYLE> tags are displayed as standard text (not very attractive).
    Is there something I'm missing? Do I have to make my own HTML parser to do this job? The HTML viewer in JDeveloper shows my page nicelly. What can be done?
    Please reply to: mailto:[email protected]
    Thanx

    Is there something I'm missing? Do I have to make my own HTML parser to do this job? The HTML viewer in JDeveloper shows my page nicelly. What can be done?We don't use the JEditorPane for displaying HTML, we licensed one for use inside of JDeveloper. Search on JARS.com, there's several out there, the JEditorPane implementation is ok for the basics, but can't handle the more advanced HTML (i.e. CSS, etc.)
    Rob

  • Problems skinning/styling ComboBox component

    So the first image is the design brief, and below it is my attempt so far. Some ways to go, and the limitations and scarce documentation of this process is getting to me. So i'm putting a call out to see if anyone's well across this process and could assist, or step me through it?
    been a while since i skinned a component in AS2, and I remember I prefered to write my own components rather than go through this process at the time. but i am hoping to use the built-in Flash component this time.
    So what I need help with is:
    Adjust scrollbar scrubber and track width, hopefully add padding around scrubber, and hopefully this would resolve the issue of losing the scrubber's black border on the right.
    Resolve issues with the combo-button (what's that white border doing there?)
    Style font correctly in combo-button
    Increase list row height
    Add dotted line between list rows
    (I'm ignoring the blue numbers)
    If anyone can help with even just one of those issues, i'd love to hear from you.
    Info about my attempt so far:
    I have skinned several clips, such as scrollThumb*, scrollUpArrow*, scrollDownArrow*, comboDownArrow*, etc.
    I have styled with the following:
    comboBox.setStyle("backgroundColor", 0x504C4B);
    comboBox.dropdown.setStyle("backgroundColor", 0x504C4B);
    comboBox.setStyle("themeColor", 0x1F90AE);
    comboBox.setStyle("color", 0xC4C0BF);
    comboBox.setStyle("textSelectedColor", 0xC4C0BF);
    comboBox.setStyle("textRollOverColor", 0xC4C0BF);
    comboBox.setStyle("alternatingRowColors", [0x504C4B, 0x504C4B]);
    comboBox.setStyle("borderStyle", 'none');
    I have attached the fla I've worked with so far in a zip.
    Thanks for your help!

    Well I resolved this merely by lowering my expectations!
    Leaving this unanswered because I am hoping there must be answers to these issues out there for future reference.
    But for now, my comboBox looks like this:
    And i achieve this by skinning some clips, and adjusting my styling code:
    combo.setStyle("backgroundColor", 0x504C4B);
    combo.dropdown.setStyle("backgroundColor", 0x504C4B);
    combo.setStyle("themeColor", 0x1F90AE);
    combo.setStyle("rollOverColor", 0x46bbda);
    combo.setStyle("color", 0xC4C0BF);
    combo.setStyle("textSelectedColor", 0xFFFFFF);
    combo.setStyle("textRollOverColor", 0xFFFFFF);
    combo.setStyle("alternatingRowColors", [0x504C4B, 0x504C4B]);
    combo.setStyle("borderStyle", 'none');
    combo.text_mc.setStyle("borderStyle","none");
    combo.text_mc.setStyle("themeColor", 0x00FF99);
    combo.text_mc.setStyle("borderColor",0xFFFFFF);
    combo.text_mc.setStyle("color",0xC4C0BF);
    combo.dropdown.setStyle("color",0xC4C0BF);

  • Text styling

    This is a great production tool that we're interested in using to develop widgets for iBooks. I'm worried about the typograhy aspects of iAd Producer though. Unless I'm missing something, its seems that text styling can only be applied to an entire Label object as a whole; there doesn't seem to be the ability style within that Label object text. I realise this may need to be done through CSS rather some WYSIWYG editor but I can't see how to do this where it would be applied to spefic words or phrases and not the object as a whole. As a basic core feature, we would need to be able to style individual words or sentences to be bold or italics, a spefic colour or underline, and to use bulletted and numbered lists and indenting. For ease of use, this would ideally be through a WYSIWIG editor such as the editor for this discussion forum.
    If there is a way to do this, please let me know.
    Thanks and regards,
    Mick

    Thanks Mark,
    That makes perfect sense now that you've pointed it out.
    I'm not sure if I'm doing something wrong, but I can't get the global.css to work when referenced from an HTML object. If I place the follwing in the global.css
    .normal {font-size:14px}
    .boxed {background: #FC0}
    .blue {background: #80b5ff}
    and then reference it within the HTML object:
    <div class="normal"><p>I am proud to come to this city as the guest of your <span class="boxed">distinguished Mayor,</span> who has symbolized throughout the world the <span class="blue">fighting spirit of West Berlin.</span></p></div>
    It doesn't work. Whereas, if I place the same styling internally in the HTML object, it works fine.
    ie
    <style type="text/css">
                .normal {font-size:14px}
                .boxed {background: #FC0}
                 .blue {background: #80b5ff}
    </style>
    <div class="normal"><p>I am proud to come to this city as the guest of your <span class="boxed">distinguished Mayor,</span> who has symbolized throughout the world the <span class="blue">fighting spirit of West Berlin.</span></p></div>
    Does an HTML object need to call in the global.css ie through something like:
    <link rel="stylesheet" type="text/css" href="global.css">
    (not working when I tried it)
    Any help appreciated,
    Thanks,
    Mick

  • CSS or JS Navigation Bar with inline Styled Search Field

    Does anyone know of a good tutorial on how to create a CSS or
    JS navigation bar that would contain a matching styled search field
    box?
    I have tried creating something like this a couple of times
    using the old JS Navigation Bar wizard in DW, but can't get the
    results I need. I can never seem to add a column that would include
    a search box and have it look right and inline with the rest of the
    navigation.
    For reference, I am trying to do a nav that is somewhat
    similiar to Apple's Nav bar, where the search field is styled to
    match the rest of the Nav and inline with the rest of the buttons.
    Any thoughts?
    Thanks.

    You don't need to use PMM. You can set your menu container to
    position:
    relative and then absolutely position the search box inside.
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"
    "destind4film" <[email protected]> wrote in
    message
    news:fkukir$8l4$[email protected]..
    > Hi Al,
    >
    > Thanks for the quick reply. I had actually checked your
    site earlier
    > today,
    > since I have had such an awesome experience with your
    accordion menus.
    >
    > That example is almost exactly what I am trying to do,
    minus the dropdown
    > menu
    > buttons. The buttons currently are just simple rollovers
    that go directly
    > to
    > other pages, but I am trying to place a styled search
    box to the right
    > like
    > your example has.
    >
    > Here is the current page (also using the PVII Accordion
    Menu) that does
    > not
    > have the search added yet, but you can see that I have
    plenty of real
    > estate to
    > include one:
    >
    >
    http://www.dvdflashbacks.com/mrhubcap/
    >
    > Questions:
    > Can the pop menu be used with my current roll over
    images for basic Nav
    > bars
    > like this?
    > How easy is it to add the search field to this menu?
    (This is a PHP/MySql
    > backend for the site using Cartweaver3. I have a php
    search snippet from
    > CW3
    > that I was trying to stick into a table cell next to
    this nav but the cell
    > would never align properly for some reason.)
    >
    > Thank you very much and Merry 'Belated' Christmas!
    >

  • A point of reference

    i'm relatively new to css for about 3 weeks now ive been
    trying out codes.
    Ive been teaching my self using eric meyer on css. But so far
    its still a
    jumbled thing in my mind.
    So i am making a prop site from scratch just so it makes
    logical sense all
    the way. ive created the site in fireworks i now need to do
    it in css.
    But i need a point of reference. ok below is a link to the
    page design how
    would i go about positioning each div that i would create
    head,content,right
    side div and footer.
    How do i set it up where they align exactly as on the
    picture, never mind
    the content i think i'd be good as far the content.
    PS. Yes i did start it but the codes i used did not do what i
    wanted.
    I want to start from scratch using only the code you suggest
    for it.
    http://www.strongtowerint.org/css4550/jr1.jpg

    For what it's worth, using tables for layout makes it *much*
    easier to build
    pages which work everywhere. You can still use CSS to style
    everything else
    on the page, and you can still have clean, valid code.
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    "Maurice Clarke" <[email protected]> wrote in
    message
    news:[email protected]...
    > Yes iam not completely a novice to webdesign im just now
    learning css.
    > And i have been doing exactly what your suggesting. Ive
    done tutorials
    > and i have even work with the eric meyer css book.
    >
    > But doesnt seem to be completly logical for eg if you
    position a page or
    > its elements this way it doesnt mean the same code will
    work on another
    > design.
    > So to position divs in one design is done completly with
    a different set
    > of code
    > in another its not always re-usable.
    >
    > With my learning style thats hard to follow. I get stuck
    because i'm
    > typing in the
    > same code that positioned my div in the tut. but it
    doesnt affect the css
    > at all.
    > Then i find out i have to approach it a completly
    different way.
    >
    >
    > The thing with html is that it was what it was one code
    fits all with a
    > little modification.
    > But what i'll do is just continue to try different
    approches and ask you
    > guys for help until
    > i get a good grasp of the various approches to css
    coding.
    >
    >
    >
    >
    >
    >
    > "Michael Hager" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> Here's the thing Maurice... if you really want to
    learn CSS and HTML,
    >> ditch Fireworks completely and start from scratch in
    Dreamweaver.
    >>
    >> First, get into the tutorials about html and css.
    Buy some books, use
    >> Google a lot. put in "html tutorial" and "css
    tutorial" There's a lot of
    >> information out there. Come to this forum and read
    lots of posts.
    >> You'll discover tons of great information and ideas
    to try.
    >>
    >> Experiment in Dreamweaver. Use code view a LOT. Look
    at what is
    >> happening on your page and in the code when you
    change things.
    >>
    >> Start with a blank page. Put a one cell table on the
    top. Put in some
    >> text for your header banner. Color the background.
    Look at the code and
    >> see what it is doing. Create and external style
    sheet. Look at what it
    >> produces
    >>
    >> Try the same thing with a div. See the difference in
    behaviors.
    >>
    >> Ad some more content. Try creating and styling
    links. NOW put some
    >> fireworks created graphics on the page. See how they
    look in code view.
    >>
    >> After awhile it will suddnely sink in how it all
    works and you'll really
    >> tak off.
    >>
    >> Good luck...!
    >>
    >>
    >>
    >> "Maurice Clarke" <[email protected]>
    wrote in message
    >> news:[email protected]...
    >>> i'm relatively new to css for about 3 weeks now
    ive been trying out
    >>> codes.
    >>> Ive been teaching my self using eric meyer on
    css. But so far its still
    >>> a
    >>> jumbled thing in my mind.
    >>>
    >>> So i am making a prop site from scratch just so
    it makes logical sense
    >>> all
    >>> the way. ive created the site in fireworks i now
    need to do it in css.
    >>>
    >>> But i need a point of reference. ok below is a
    link to the page design
    >>> how
    >>> would i go about positioning each div that i
    would create
    >>> head,content,right
    >>> side div and footer.
    >>>
    >>> How do i set it up where they align exactly as
    on the picture, never
    >>> mind
    >>> the content i think i'd be good as far the
    content.
    >>>
    >>> PS. Yes i did start it but the codes i used did
    not do what i wanted.
    >>>
    >>> I want to start from scratch using only the code
    you suggest for it.
    >>>
    >>>
    >>>
    http://www.strongtowerint.org/css4550/jr1.jpg
    >>>
    >>>
    >>
    >>
    >
    >

  • Styling a BC form in an App...

    Hi Guys,
    I'm trying to get this form working inside of an app created in DPS, from what i can gather off support i need to get ot working and styled correctly inside of BC first but i'm stuck!
    Here's what i'm currently getting,
    http://www.youtube.com/watch?v=Go1SogYpLC0&feature=youtu.be
    Any help would be great!
    Cheers!

    Hey there,
    In design is for flat design print documents or the digital applications. It is not associated with business catalyst in any way.
    Modules and tags of BC work only in BC so none of those work. So you can not use any of that. So you wont be able to have captcha etc.
    If you click the actions dropdown on a form in the admin and choose the html option not the customise form option. That html you will see has an absolute url reference to your BC site (edit to live url if it is not so yet) so the form action will have your domain in front of it.
    This allows you submit a web form to your BC site from another.
    In terms of style while I do not use inDesign you need to style as it allows. You need to google or read up how to apply styles to what your doing in inDesign if you are building a digital book or similar etc.
    Doing a quick google myself I can see many instructions on how to style html using inDesign.

  • How to add a reference to a custom stylesheet from a Team Site wiki page

    We have a Team Site (no publishing feature enabled).  We have several wiki pages where we inserted custom html content via "edit source".  This custom content has some divs defined in it to which we want to apply some styling.  We
    have styles.css saved in Style Library.  How do I reference this style.css from the wiki page?  I don't want to put the style definition on the wiki page itself since the same style will be shared by multiple pages.
    thanks,

    There are a variety of customization options available for BEA Workshop. Through metadata you can define renderings for custom tags, tag appearance in the tag libraries view, customize the tag editors, and much more.
    Information about customization can be found at the following link: http://workshopstudio.bea.com/docs/tlei.htm
    Adding custom tag documention to the Tag Libraries view is not currently a configuration option but would be a useful addition. I will file an enchancement request for this functionality.

  • CC hyperlinks and styling  individual divs

    I would like to style my hyperlinks depending on the div background colors. I read the  tutorial on psuedo classes but didnt quite undersatnd how to apply it In CC. I copied some info from the tutorial into my stylesheet. Below is a portion of the stylesheet mystyles.css. How would I apply the changes for each div so that they override the settings in page properties. All pages descend from a template page. website can be seen at www.eastsidesedationdentistry.com
    /* Special Rules for Desktops */
    @media only screen and (min-width: 1000px) {
         body {font-size: 100%}
    .gridContainer.clearfix #sidebar div img {
              padding: 10px;
    .gridContainer.clearfix #sidebar div img {
    #website {display:none;
    .maincontent a:link {
              text-decoration: underline;
              color: #FFCC00;
    .maincontent a:visited {
              text-decoration: underline;
              color: #FFCC00;
    .maincontent a:hover {
              text-decoration: none;
              color: #CCCCCC;
              background-color: #333333;
    .maincontent a:active {
              text-decoration: underline;
              color: #FFCC00;
    Thanks
    Andrea

A: CC hyperlinks and styling  individual divs

A.Cambria wrote: Can I assign multiple classes to the same div?  Currently I have  <div id=" main content" class='fluid" >  What is the correct syntax to add the class "row" Can you also explain how to add the .row info to the external style sheet
The class of "row" was just an example - you don't need this unless of course you want to. To create a general style for all links regardless of where they are on the page, you simply add the below to your stylesheet:
a { /* styles here */ }
a:visited, a:active { /* styles here */ }
a:hover { /* styles here */ }
If you want to only color the links within #maincontent, you would add the below to your stylesheet (this would go further down your stylesheet than the above reference):
#maincontent a { /* styles here */ }
#maincontent a:visited, #maincontent a:active { /* styles here */ }
#maincontent a:hover { /* styles here */ }
The div you specified in your message has an id, not a class.
.maincontent styles class="maincontent" in the HTML
#maincontent styles id="maincontent" in the HTML
You can add multiple classes to divs, but not multiple id's. Just separate them by a space.
<div class="maincontent row"></div>

A.Cambria wrote: Can I assign multiple classes to the same div?  Currently I have  <div id=" main content" class='fluid" >  What is the correct syntax to add the class "row" Can you also explain how to add the .row info to the external style sheet
The class of "row" was just an example - you don't need this unless of course you want to. To create a general style for all links regardless of where they are on the page, you simply add the below to your stylesheet:
a { /* styles here */ }
a:visited, a:active { /* styles here */ }
a:hover { /* styles here */ }
If you want to only color the links within #maincontent, you would add the below to your stylesheet (this would go further down your stylesheet than the above reference):
#maincontent a { /* styles here */ }
#maincontent a:visited, #maincontent a:active { /* styles here */ }
#maincontent a:hover { /* styles here */ }
The div you specified in your message has an id, not a class.
.maincontent styles class="maincontent" in the HTML
#maincontent styles id="maincontent" in the HTML
You can add multiple classes to divs, but not multiple id's. Just separate them by a space.
<div class="maincontent row"></div>

  • Error in VBA reference for Adobe Photoshop CS4 Object Library

    Hello,
    I'm using Windows 7 Pro, MS Office 2010 Pro and Creative Suite CS4 (with all updates).
    I will automate Photoshop via Visual Basic for Applications in MS Access.
    Befor using there the Adobe Photoshop CS4 Object Library I must reference it in VBA.
    But when I will du this, I get the message "Error loading DLL".
    When I will manually reference to the WIASupport.8LI File, I get the error: "Cannot reference this file"
    Can you give a tip, how I can solve this problem?
    Regards

    I have the same problem!  I have photoshop cc2014 (which we own) and the object library shows, but not for cs 5.1 (30 day trial).
    Does registering unlock something?
    Help please!!

  • Maybe you are looking for

    • VAT for sales

      Hi, I want detailed config steps for vat on sales. Please provide a detailed list of config settings. Thanks CHEERS

    • 11g Install Failure, Listener Error.

      11g Install Failure, Listener. ORA-12514: TNS:listener does not currently know of service requested in connect descriptor. I am attempting to install 11g, 11.1.0 onto a stand alone box which has Windows XP SP2 as the OS. The box is at present not net

    • My wi fi is connecting up fine on my ipod but i can't get onto the internet

      My wi fi is connecting up fine on my ipod but i can't get onto the internet. My ipod has been working fine until now and i have tried re- setting the network settings and all the other options that have been given but nothing seems to make any differ

    • OCRConfig issue

      Hi, I am getting below error while configuring the backup location for OCR. $ ocrconfig -backuploc /oracle/OCRBackup PROT-20: Insufficient permission to proceed. Require privileged user The above directory exists and "oracle" user has the read/write

    • Imported footage overnight, woke up with error....where is my footage?

      I let a video sit overnight and import while I was asleep. I woke up with an error message. Thought maybe it was all lost and I would just need to re-import it. But my hard drive is still missing about 20gb so the videos have to be somewhere... help