I need different type size to appear on the same line

I know this has to be easy, I just don't know how to do it.
I have a line of type which starts out as Headline 2, but I need the last part of the same line to appear as 12 pt paragraph type. When I select the last part of the line to resize it to 12 pt type, the entire line reverts to 12 pt. type.
Is there an easy way to achieve this look?
Thanks

Change this:
<h2><span class="maroon"><span class="blue style2">2009 Schedule of Classes</span></span> (Call for 2010 schedule)      </h2>
to this:
<h2>2009 Schedule of Classes<span> (Call for 2010 schedule)</span></h2>
Then do the css:
h2 {
     color:#FF0000;
     font-size:1.2em;
h2 span {
     font-size:0.95em;
Hope that helps.  Of course you change the css style values within each of those selectors however you wish.
E. Michael Brandt
www.divahtml.com
www.divahtml.com/products/scripts_dreamweaver_extensions.php
Standards-compliant scripts and Dreamweaver Extensions
www.valleywebdesigns.com/vwd_Vdw.asp
JustSo PictureWindow
JustSo PhotoAlbum, et alia

Similar Messages

  • How do you apply 2 different types of page numbers in the same document?

    How do one apply 2 different types of page numbers in the same document??? I do not want a number on the first page!

    Click in the second section text:
    Inspector > Layout > Section > Configuration > uncheck Use previous headers and footers
    Then go back and simply delete what's in the header/footer of the first section.
    Peter

  • Can I have different font sizes and alignments within the same title?

    Apologies, haven't been able to search through previous discussions as I'm in Madagascar and my internet connection is not adequate today!
    I'm trying to put scrolling credits on a project. I want the list of credits - music, photos, text etc. - then underneath that a nice little thanks paragraph followed by the date and website. I want the paragraph, date and website to be centered, but when I try to do that it centres the whole thing and messes with the format of the credits part. Changing the font size also makes all the text the same, but ideally I need a couple of bits to be different.
    Does that make sense?
    There doesn't seem to be a way to just highlight the bit that I want to change - it's all or nothing. But I know it's been done before, because I've got a video made last year which has this exact thing as the credits. Unfortunately the person who made that isn't here at the moment.
    Any help very much appreciated, this has to be finished within the next few hours and I've been struggling for days. I tried to do it just as several screens of text instead of the scrolling thing, but couldn't format it properly for the credits.
    As a complete aside, I've just downloaded the same song 3 times from iTunes and every time it's dodgy and cuts out after 1/3 of the song. Don't know whether this is to do with my bad internet or what... but any help with that would also be amazing.
    Thanks.

    Not currently possible.
    A computer/catalog is a unique construct.
    An iOS device can only sync to one computer/catalog at a time.
    You can sync many devices to one computer/catalog but not the other way around.

  • Different fonts(size/style/colour) on the same component?

    I want to successively append lines/paragraphs of text to some kind of swing component that will sometimes differ - I can't see a way of implementing this in just a JTextArea which is what im using at the moment for my display.

    This [url http://forum.java.sun.com/thread.jsp?forum=57&thread=342068]thread will get you started.

  • HT203421 I have recently purchased some apps from the app store and after downloading them, the icon that appears in the dock changes to a different icon. It is now the same icon appearing on all newly downloaded apps.  Does anyone know what is happening

    I have recently purchased some apps from the app store and after downloading them, the icon that appears in the dock changes to a different icon. It is now the same icon appearing on all newly downloaded apps.  Does anyone know what is happening here? Even updating an older game app resulted in the original game icon changing to the new identical icon that all new apps are appearing with.  This new icon is like a page with a ruler, pencil and paintbrush. Any tips on how to stop this or how to revert to the icon as it appears on the app store would be appreciated.

    https://discussions.apple.com/thread/6132949?tstart=0

  • HT201210 Hellow every one. i just updated my iphone 5 with the ios7. unfortunately i experience different type of bugs...the most important one to me is that the itunes store do not open at all. i'm disappointed with this version of iOS.

    Hellow every one. i just updated my iphone 5 with the ios7. unfortunately i experience different type of bugs...the most important one to me is that the itunes store do not open at all. i'm disappointed with this version of iOS. my itunes version is updated and my mc version is also updated
    my question is: how can i make itues store to work? how can i go back to the previous version of ios?

    Upgrade to Snow Leopard - it's compatible with the latest version of iTunes, and still supports PowerPC applications.
    $19.99 - http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    Snow Leopard is required if you wanted to upgrade to Lion, anyway, which you may want to in the future if the latest version of iTunes no longer supports Snow Leopard.

  • Alv is not appearing in the same Selection Screen

    Hi people..
    First time using  cl_gui_docking_container.
    I have a problem, my alv is not appearing in the same Selection Screen.
    is there somethign wrong with my code? it doesnt even show a dump or catch.
    Regards
    DATA: lo_dock TYPE REF TO cl_gui_docking_container,
           lo_cont TYPE REF TO cl_gui_container.
    DATA: gr_table      type ref to cl_salv_table,
           gr_functions  type ref to cl_salv_functions,
           gr_display    type ref to cl_salv_display_settings,
           gr_columns    type ref to cl_salv_columns_table,
           gr_column     type ref to cl_salv_column_table,
           gr_sorts      type ref to cl_salv_sorts,
           gr_agg        type ref to cl_salv_aggregations,
           gr_filter     type ref to cl_salv_filters,
           gr_layout     type ref to cl_salv_layout,
           color         type lvc_s_colo,
           key           type salv_s_layout_key.
       SELECT * INTO TABLE tbl_datos_items FROM zsd_micros_bd.
    CHECK lo_dock IS INITIAL.
      CREATE OBJECT lo_dock
           EXPORTING
             repid = sy-cprog
             dynnr = sy-dynnr
             ratio = 70
             side  = cl_gui_docking_container=>dock_at_bottom
             name  = 'DOCK_CONT'.
         IF sy-subrc <> 0.
           MESSAGE 'Error in the Docking control' TYPE 'S'.
         ENDIF.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( )

    Hi ,
    First you have to create you own screen ( dynpro )  with a screen number ( 0101 for exemple )  , you need to pu a custom control in it , name the custom control ( lo_cont )
    For the screen created you need to create a module for the PBO , in this module you sould put you code for displaying the liste :
    Module STATUS_0101 output.
    TRY.
    lo_cont ?= lo_dock.
    cl_salv_table=>factory(
    exporting r_container      = lo_cont
                 container_name = 'DOCK_CONT'
                 list_display   = if_salv_c_bool_sap=>false
    importing r_salv_table = gr_table
    changing t_table = tbl_datos_items  ).
    CATCH cx_salv_msg .
    ENDTRY.
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'Items de Ventas' ).
      gr_table->display( ).
    Endmodule.
    and give the screen number when calling  lo_dock 
    CREATE OBJECT lo_dock 
           EXPORTING
             repid = sy-cprog
             dynnr = '0101'.
    tested
    Regards

  • How to get a form to appear on the same page when a button is clicked?

    Hi,
    I have a report on a page with a create button. When a user clicks the create button, a form should appear on another region in the same page....how do i go about doing this?
    I know how to do this if the form is on a different page, but i'd like the form to appear on the same page as the report and only when the button is clicked.
    Thanks.

    Hi,
    I did the following, but it didnt work....
    1) Created a hidden item on the page, and in the Default Value field, I set the value to N.
    2) Created a button in the report with the following values under "Optional URL Redirect":
    Target is a: Page in this application
    Page: 4
    Set these items: P1_SHOW_FORM
    With these values: Y
    3) Created a form of HTML text type with the following values under "Conditional Display":
    Condition Type: Request=Expression 1
    Expression 1: P1_SHOW_FORM='Y'
    What have I done wrong or have i missed something?
    Thanks.

  • How do I type Hebrew and English on the same page

    How do I type Hebrew and English on the same page in Indesign?

    What version of InDesign are you using? And on what operating system? Switching keyboard ("input methods") is in your OS, not in InDesign. InDesign has had the capability to display right-to-left languages since CS4, but only the Middle East edition has the abilities to actually manipulate Hebrew text. If you're trying to do a bilingual, bidirectional document, you'll need the ME edition. If you are a CC subscriber, it comes with your subscription; if you are not, you'll need to buy another version of ID, or a plugin that will allow you to access those RTL features.

  • Why does mountain lion "bunch up" all my microsoft office documents that I have open when I hit f3? When I had snow leopard for example, if i had 4 or 5 different microsoft office documents open at the same time I could hit f3 and easily pick one of them

    Why does mountain lion "bunch up" all my microsoft office documents that I have open when I hit f3? When I had snow leopard for example, if i had 4 or 5 different microsoft office documents open at the same time I could hit f3 and easily pick one of them.
    Notice how in the photo, I can't identify which MS office document I would like to switch too. Perhaps since the Dashboard and Desktop windows are at the top of my screen now Apple doesn't let you have all the applications take up the full screen and be sized individually so that you can have a better idea on what to pick.
    I like the idea of grouping to an extent... If you have a bunch of random things it was hard for me to decifer between what was safari, chrome, or word. But now that they grouped them like this, if you have multiple pages of one program running, you can't switch between those pages easily like before.

    If I wanted to open any of my Applework documents I had to open them one at a time and resave them with pages. This could take weeks.I have 1000s of apple work documents.
    You don't have to open and re-save every AppleWorks document you have right now. Just wait till you need one, then do it. The documents aren't going anywhere.
    Am I dealing with Microsoft? This was a BIG surprise to me that Apple would release an OS without testing all programs.
    Frankly, it is not Apple's responsibility to ensure compatibiltiy with every piece of software available for OS X. That is the responsibility of the software vendor. Lion has been available to developers for several months before it's release, so Microtek had plenty of time to update their software. Yet they did not. How is that Apple's fault? I think Apple was very generous to give you a refund for Lion.
    I'm not trying to belittle your frustration but I do think your ire is misplaced.

  • Can I sync two iPads with different users and email addresses on the same computer

    Can I sync two IPads with different users and email addresses on the same computer.

    yes, just make sure you turn off auto-sync to keep everything organized before you try syncing
    on a pc
    edit > preferences > devices - 'prevent ipads, iphones, and ipods from syncing automatically' needs to be checked

  • Two different streamings on two AppleTV at the same time?

    Hey guys, I'd like to buy a second Apple TV.
    First:
    Is it possible to stream different content on each AppleTV at the same time by using one computer with only one iTunes?
    Second:
    If the first question is answerred by "no", is it possible to stream the SAME content on the second AppleTV at the same time?
    Thx 4 helping out. By the way, sorry if my english sounds bad, but I am from Germany

    MMWH wrote:
    First:
    Is it possible to stream different content on each AppleTV at the same time by using one computer with only one iTunes?
    Yes that's possible, I do it all the time with multiple Apple TV's, it's worth mentioning though that the more streams you have running the better your network will need to be.
    Second:
    If the first question is answerred by "no", is it possible to stream the SAME content on the second AppleTV at the same time?
    The first answer is yes but to answer this one too:
    Yes its possible to stream the same content to both Apple TV's at the same time. Although it's worth mentioning that at the same time means at very nearly the same time, I wouldn't want to imply the streams would be in sync. Basically you could start a movie from one Apple TV then go to the second one and start the same (or indeed a different) movie.

  • Ondemand subreport or a drilldown, I want the content to appear in the same tab that is in the main report

    <p><strong>When I click on the ondemand subreport or a drilldown, I want the content to appear in the same tab that is in the main report itself. How to make this work? As of now it opens up a new tab for drilldown or ondemand subreport? How to make this work? I want any expert here to throw some light on this?</strong></p><p>Plz mail me at    [email protected] </p>

    I fixed this problem. It was pretty easy.
    First, in the address bar, type in " about:config " .
    When it asks if you are sure about making changes & it may void the warranty, click "yes--I promise I'll be careful" or something along those lines. (I heard there is no warranty, & it's just a joke)
    Once you get to the new screen, find " browser.link.open_newwindow "
    You will see the # 3 on the same line. Change that value to 1.
    Wah-la! :)
    http://kb.mozillazine.org/Editing_configuration
    http://kb.mozillazine.org/Browser.link.open_newwindow

  • Final total cannot appear when the last line item reached the page end

    Hi All,
    My report included 2 pages. Problem is the final total cannot appear when the last line item reached the page end. (page 2)
    final total will appear on the middle of last page (page 3) when i comment (type    = 'BOTTOM').
    Below is the program.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device   = 'PRINTER'
          dialog   = 'X'
          form     = 'ZBOTM_VOUCHER'
          language = sy-langu.
      sort itab by vblnr.
      LOOP AT itab INTO wa_itab.
        move wa_itab-vblnr to reguh-vblnr.
        move wa_itab-lifnr to reguh-lifnr.
        move wa_itab-rbetr to reguh-rbetr.
        reguh-rbetr = reguh-rbetr * -1.
        CALL FUNCTION 'WRITE_FORM'
          EXPORTING
            window  = 'MAIN'
            element = 'DETAIL'.
        t_rbetr = reguh-rbetr + t_rbetr.
        AT LAST.
          CALL FUNCTION 'WRITE_FORM'
            EXPORTING
              window = 'LINE'.
          CALL FUNCTION 'WRITE_FORM'
            EXPORTING
              element = 'TOTAL'.
              type    = 'BOTTOM'
              WINDOW  = 'MAIN'.
        ENDAT.
    Thanks.

    Hi,
    Where should I include the code for bottom?
    How to open text editor?
    Thanks.
    Edited by: Alice8 on Feb 7, 2011 9:09 AM

  • "Batch NO SALEAB. and valuation type 1ST CHOICE are not the same"

    Hi MM guru,
    Please help me with the error message - "Batch NO SALEAB. and valuation type 1ST CHOICE are not the same" encountered during MB1b transaction.
    Thanks in advance,
    Iram

    Hello Amuthan,
    I'm using mov type 311 and the material is not batch managed. I've entered the supplying & receiving batch and then error "Batch NO SALEAB. and valuation type 1ST CHOICE are not the same" was encountered, I found out that in table MCHA that the batch & valuation type for this material is not the same thats why its showing the error. Can you please guide me on how to maintain the data in table MCHA? What configuration we need to set?
    Thanks in advance,
    Iram

Maybe you are looking for

  • Can I use a usb and wireless keyboard at the same time on a mac pro

    I wish to use the Mac Pro USB keyboard for Logic shortcuts and the Mac Pro wireless keyboard for normal typing etc. Is this possible?

  • Unable to see imported RFCs in the BPM

    Hi, I want to invoke a BAPI from a BPM, but I am unable to see the BAPI request / response interfaces in the BPM. I am trying to create Containers and Transformations in the BPM, but I am unable to select the BAPI request / response interfaces. What

  • APPLE TV AIRPLAY PROBLEM

    I have an apple TV, iPads, iPhone, and Macbook pro running Mavericks, I can mirror all my devices but the macbook pro won't display properly on the TV, any suggestions are appreciated.

  • CUSTOM PHOTO BOOK THEME / TEMPLATE SETTINGS?

    I want to create a photo book using any of the pre-defined Aperture photo book themes. My question is that I want to create a book in Portrait Layout (8.5 x 11") but the only available themes seem to be designed in Landscape Layout (11 x 8.5"). Are t

  • Best study-guide for CCNA Security

    Hi..fellows !! Wts the Best study-guide for CCNA Security..?? Guys I need it including Authors also... Best Regards Nuwan