Section / Section #

Hello,
I'm trying to do something I thought would be fairly simple:
I'm using CS2 (i know, i know, its not my fault.  I swear).  I'm trying to place a section title and a section number in the same document.  I would like them to be different fonts, so I need to somehow specify when I'm using a section title and when I'm using a section number.  I thought that this could be done using the section prefix vs. heading distinction but soon discovered that the section prefix could only be inserted as part of the page numbering.  I was wondering if there was a way to tell inDesign that every time I use a specific text, it adds another piece of text in a different front right next to it.  For example, using section markers, i could have indesign recognize that every time it reads section number 10.2, it would place the section title right next to it.  Or vice versa, if it reads a title, it would put the correct section number next to it.
Of course, I would love this to be automated and dynamic, but maybe that's asking for to much.  In short, is there any way to get a section prefix without a page number next to it?  Or give sections two different section headings?

Consider upgrading to CS5 if you are doing a lot of this sort of thing. The introduction of variables makes a lot of this very simple in later versions, but a lot of what you are trying to do in CS2 can really only be accomplished by making many master pages, each taylored to a particular section or chapter.
CS2 is the earliest version eligible for upgrade pricing to CS5, and if current policy holds it will not be eleigible for CS6 when that is released (probably in a littel over a year from now if the current cycle continues). Suites can only be upgraded as a unit, which is not cheap untill you compare it to the full retail cost of  a suite pacakge, and then it starts to look very good, but if you InDesign is a stand-alone it can be upgraded for around $200. The difference between working with CS2 and CS5 in terms of productivity enhancements and new features will be somthing like switching from your old electric typewriter to a real word processor, and you'll make up the cost of the upgrade, even for a full suite, in little or no time on increaed prodcutivity alone if you work with the programs daily. (plus there's the failure-to-upgrade-now penalty  if you decide you want CS6 when it comes out -- you'll probably still save money by upgraing to both CS5 and CS6, you spread the cost over a longer period, and you get to use CS5 in the meantime.)

Similar Messages

  • Can anyone explain what the other section section in the HDD usage description is for ? I recently used iphoto to send a mail and this "other "section inrease the usage by about 1GB....any ideas why ?

    Can anyone explain what the "other" (yellow colour) section in the HDD usage description is for and what it does.It is under the about this mac section and storage option?
    I recently used iphoto to send mail with photos attached and this "other" section increased by about 1GB. The mail size was around 900KB.....any ideas ?

    Shurig wrote:
    Thanks gor replying,,,this is my first time on this site.
    Any idea why the "other" continues to increase. I have just got got my mac so no new apps installed yet only been using it for mail and web browsing. I tried the iphoto mail last night and noticed the the "other" section had increased by 1GB which I thought was rather larger. Do you know what this setion actually does ?
    Also do you know if it is possible to delete the iphoto emails.
    All of your 'stuff' that is not Music Movies Apps Backups or Photos is in Other, that means all your emails, all your files etc, why don't you just leave well enough alone, this is not windows and doesn't need tinkering with,

  • How to add a field object to group header section in crystal report document?

    Hi All, I have got two questions mentioned below, please share your inputs. 1)I want to know whether it is possible to add a field object to header section in crystal report document programmatically? I am using crystal runtime for visual studio. I know that using RAS we can do it, but I want to do it using managed library of crystal runtime. Please suggest. 2) I am doing a POC where I am using RAS (unmanaged library) to manipulated crystal report document. Please see code below: var dbTable = _reportDocument.ReportClientDocument.DatabaseController.Database.Tables[0]; var dbField = dbTable.DataFields.FindField(item.ColumnName,                         CrystalDecisions.ReportAppServer.DataDefModel.CrFieldDisplayNameTypeEnum.crFieldDisplayNameName,                         CrystalDecisions.ReportAppServer.DataDefModel.CeLocale.ceLocaleEnglishUS); CrystalDecisions.ReportAppServer.ReportDefModel.FieldObject fieldObject = new CrystalDecisions.ReportAppServer.ReportDefModel.FieldObject();                     fieldObject.DataSourceName = dbField.Name;                     fieldObject.FieldValueType = dbField.Type; var groupHeaderArea = _reportDocument.ReportClientDocument.ReportDefController.ReportDefinition.GroupHeaderArea[0].Sections[i]; _reportDocument.ReportClientDocument.ReportDefController.ReportObjectController.Add(fieldObject, groupHeaderArea); In above code last line throwing exception : "The report field type is not valid." at CrystalDecisions.ReportAppServer.Controllers.ReportObjectControllerClass.Add(ISCRReportObject ReportObject, Section Section, Int32 nIndex) Thanks, Jai

    Hi Jaikumar
    As per the SCN Rules of engagement, one question per thread please.
    Re. your 1st question. Adding a field to a report is considered to be a report creation APIs (RCAPI). Only the RAS SDK has RCAPIs, so you can not use plain jane crystal APIs. For how to with RAS, see the examples here: NET RAS SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
    Also, consult the Developer Help Files:
    Report Application Server .NET SDK Developer Guide
    Report Application Server .NET API Guide
    Re. your second question, please create a new discussion.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Crystal 2011 RAS. Section Expert Paging tab properties does not correspond to EnableNewPageAfter, EnableNewPageBefore properties in section format

    Hello,
    We have application where you can select fields, select groupings and properties (for example disable page grouping ) and create custom report.
    It worked with crystal 9.
    Now we are converting to Crystal 2011 and I have the following problem:
    I create report dynamically and set group footer EnableNewPageAfter property to false in group footer section.
    When report is created , I open it and see that New Page After property in section expert is unchecked.
    When I run the report, I have page break after each group - which is wrong.
    If I open report in Crystal, check New Page After Property , save, exit report, open report again, uncheck New Page After Property, save and exit,And than run the report again,
    My report behaves correctly:does not break after each group.
    If I open report in Crystal, check New Page After Property , save, exit report and then load this report in code and look at EnableNewPageAfter property,
    the property is still false - but it should be true
    Do I use the wrong property?
    What is the right RAS property to set  Crystal report 'New Page After' Property in the code for group footer/group header?
    Below is method that sets properties for section.
    All properties from common tab works, but paging tab properties does not work
    public static void SetSectionSettings( ReportSectionController reportSectionController, Section section, Color backgroundColor, bool enableKeepTogether, bool enableNewPageAfter,
                                                bool enableNewPageBefore, bool enablePrintAtBottomOfPage, bool enableResetPageNumberAfter, bool enableSuppress, bool enableSuppressIfBlank,
                                                bool enableUnderlaySection, bool autoFitSection )
                try
                    SectionFormat sectionFormat = new SectionFormat();
                    sectionFormat.EnableKeepTogether = enableKeepTogether;
                    sectionFormat.EnableNewPageAfter = enableNewPageAfter;
                    sectionFormat.EnableNewPageBefore = enableNewPageBefore;
                    sectionFormat.EnablePrintAtBottomOfPage = enablePrintAtBottomOfPage;
                    sectionFormat.EnableResetPageNumberAfter = enableResetPageNumberAfter;
                    sectionFormat.EnableSuppress = enableSuppress;
                    sectionFormat.EnableSuppressIfBlank = enableSuppressIfBlank;
                    sectionFormat.EnableUnderlaySection = enableUnderlaySection;
                    sectionFormat.BackgroundColor = uint.Parse( ColorTranslator.ToWin32( backgroundColor ).ToString() );
                    reportSectionController.SetProperty( section, CrReportSectionPropertyEnum.crReportSectionPropertyFormat, sectionFormat );
                catch ( Exception ex )
                    log.Error( "ReportApplicationBuilder error - SetSectionSettings: ", ex );
                    throw;
    Thanks,
    Julia Klubis

    Hi Julia,
    There have been a few escalations of this type. For some odd reason you have to call the .Set 2 times...
    reportSectionController.SetProperty( section, CrReportSectionPropertyEnum.crReportSectionPropertyFormat, sectionFormat );
    reportSectionController.SetProperty( section, CrReportSectionPropertyEnum.crReportSectionPropertyFormat, sectionFormat );
    See if that works?
    Don

  • Special summary field in the group footer section.

    Post Author: Razzle00
    CA Forum: General
    I have a Crystal Report that reads a customer file grouped by custid.  In the group footer section I need to place the value of the category field from each customer record in a seperate field on the report to match the section text label.The output of the report would look something like this for each customer id (1 page per cusomter id)....
    Customer Table Example:Custid   Category  Section
    101        C         1101        B         3101        D         6101        A         2 230        B         2230        D         3 230        E         1115        A         5115        C         6
    Each page of report example output:************************************************<pageheader>
    Customer Number: 101
    <Details><groupfootersection>
    This customer has the follow for each section:
    Section 1: C  Section 2: A  Section 3: BSection 4:Section 5:Section 6: D
    <Pagefooter>************************************************
    How would I create a field that could diplay the category for each section in the groupfootersection of the report?I realize this could be done in the detail secion of the report for each record, but I do not have the optionto use the detail band.  It has to be done in the groupfootersection so that the fields can be placed in variousplaces depending on customers preference.
    Thanks,
    Razzle

    A group footer will dis[lay contents of the last record. You need to sort records to ensure that the last record contains link to your dynamic image.
    Ian

  • Two Sections in One Report

    Hello All,
                I have a req wherein a Report Will Contain Two Different Sections.
    Section A                                               |       Section B
    Customer      Col1  Col2   Col3                 |      Customer  Col1 Col2 Col3
    All the fields are Similar in both the sections, Section A will show outstanding A/R. Section B Will Show Partial Payments. Any ideas?

    Hi
    Option 1: have two reports and then have a workbook for both reports
    option 2: have a static column structure 
                           Outstanding AR                    Partial Payments
    customer                
    Hope this Helps
    Anand Raj

  • New selection disappears from sectionlist when I add rules (was: New section in CSS)

    When I try to make a nex CSS for a section it disapeasr from the sectionlist before I start to add rules. Why?
    And why does my (succeded) CSS rules not show up in the codesection?
    <!doctype html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>ATL Webside</title>
    <link href="ATL WEBside.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <div id="Wrap">
      <header id="Topp">Content for  id "Topp" Goes Here</header>
      <nav id="Nav">Content for  id "Nav" Goes Here</nav>
    <aside id="Side">Content for  id "Side" Goes Here</aside>
      <section id="foto">Content for  id "foto" Goes Here</section>
      <section id="sek 1">Content for  id "sek 1" Goes Here</section>
      <section id="sek 2">Content for  id "sek 2" Goes Here</section>
      <section id="sek 3">Content for  id "sek 3" Goes Here</section>
      <section id="sek 4">Content for  id "sek 4" Goes Here</section>
      <section id="sek 5">Content for  id "sek 5" Goes Here</section>
      <section id="sek 6">Content for  id "sek 6" Goes Here</section>
      <section id="sek 7">Content for  id "sek 7" Goes Here</section>
    <section id="sek 8">Content for  id "sek 8" Goes Here</section>
    <section id="sek 9">Content for  id "sek 9" Goes Here</section>
    </div>
    </body>
    </html>
    BR Nille

    I ment new "Selection" :-)

  • Invalid Section Height when I load the nth subreport

    I am attempting to load multiple sub-reports into a master report document. The process is:
    Use the RAS SDK to obtain a reference to the detail area
    Add a section to the detail area
    Import the subreport into the detail area
    The code is pretty simple as well.
            private ReportDocument AddSubReportToParent(string subReportName, string fileName)
                try
                    CrystalDecisions.ReportAppServer.ReportDefModel.ISCRArea detailArea = _crystalDocument.ReportClientDocument.ReportDefController.ReportDefinition.DetailArea;
                    CrystalDecisions.ReportAppServer.ReportDefModel.Section section = new CrystalDecisions.ReportAppServer.ReportDefModel.Section();
                    string sectionName = "Section" + subReportName.Replace(".", "");
                    section.Name = sectionName;
                    section.Kind = CrystalDecisions.ReportAppServer.ReportDefModel.CrAreaSectionKindEnum.crAreaSectionKindDetail;
                    section.Width = headerArea.Sections[0].Width;
                    _crystalDocument.ReportClientDocument.ReportDefController.ReportSectionController.Add(section, detailArea, -1);
                    _crystalDocument.ReportClientDocument.SubreportController.ImportSubreport(subReportName, _configSettings.InputPath + "\\" + fileName, section);
                    ReportDocument subreport = _crystalDocument.OpenSubreport(subReportName);
                    return subreport;
                catch (Exception ex)
                    Logger.ErrorException(this.GetReportBuilderErrorText(this.GetReportBuilderErrorText(String.Format("Unable to add subreport '{0}' from file {1} to custom Crystal Report", subReportName, fileName))), ex);
                    throw;
    However, when I attempt to load the 41st report (or sometimes greater) the ImportSubreport method throws an exception with the message, "Invalid Section Height". Note that I have one section for each report. This is to make it easier to place the subreport on in the document and on it's own page.
    I cannot seem to determine what is going wrong. Why would the 41+ import fail?
    I am using Crystal Reports Version for Visual Studio .NET, 13.0.8.

    Hi Ryan,
    No need to test, Ludek found this KBA:
    1670453 - RAS Can't Create Objects in Crystal Report Sections Past
    40
    So your only work around is to create a template report with dummy subreports already embedded in it.
    Here's something to get you started:
    btnReportObjects = Text box
    subreportClinetDocument.IsImported is a new API so you may need to upgrade CR for VS.
    btnReportObjects.Text = "";
    flcnt = 0;
    foreach (String resultField in rptClientDoc.SubreportController.GetSubreportNames())
        SubreportController subreportController = rptClientDoc.SubreportController;
        SubreportClientDocument subreportClinetDocument = subreportController.GetSubreport(resultField);
        if (subreportClinetDocument.IsImported)
            textBox1 = "Imported: " + subreportClinetDocument.SubreportLocation.ToString();
            btnReportObjects.Text += textBox1;
            btnReportObjects.AppendText(" 'End' \n");
            ++flcnt;
            btnCount.Text = flcnt.ToString();
        else
            textBox1 = "embedded: " + " " + resultField.ToString();
            btnReportObjects.Text += textBox1;
            btnReportObjects.AppendText(" 'End' \n");
            ++flcnt;
            btnCount.Text = flcnt.ToString();
        CrystalDecisions.CrystalReports.Engine.ReportObjects crReportObjects;
        //set the crSections object to the current report's sections
        CrystalDecisions.CrystalReports.Engine.Sections crSections = rpt.ReportDefinition.Sections;
        if (resultField.ToString() == "World Sales Report.rpt")
            //loop through all the sections to find all the report objects
            foreach (CrystalDecisions.CrystalReports.Engine.Section crSection in crSections)
                crReportObjects = crSection.ReportObjects;
                //loop through all the report objects to find all the subreports
                foreach (CrystalDecisions.CrystalReports.Engine.ReportObject crReportObject in crReportObjects)
                    if (crReportObject.Kind == ReportObjectKind.SubreportObject)
                        CrystalDecisions.ReportAppServer.ReportDefModel.Section rasSection;
                        rasSection = rptClientDoc.ReportDefController.ReportDefinition.FindSectionByName(crSection.Name);
                        CrystalDecisions.ReportAppServer.Controllers.SubreportClientDocument MyNewSub;
                        MyNewSub = rptClientDoc.SubreportController.GetSubreport(resultField.ToString());
                        CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject objSubreport = rptClientDoc.ReportDefController.ReportObjectController.GetAllReportObjects()[crReportObject.Name] as CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject;
                        CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject objSubreport2 = (CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject)objSubreport.Clone(true);
                        rptClientDoc.ReportDefController.ReportObjectController.Remove(objSubreport);
                        CrystalDecisions.ReportAppServer.ReportDefModel.SubreportLinks mySubLinks = rptClientDoc.SubreportController.GetSubreportLinks(objSubreport2.SubreportName.ToString());
                        mySubLinks.RemoveAll();
                        objSubreport2.Left = 10;
                        objSubreport2.Height = 10;
                        objSubreport2.Width = 10;
                        objSubreport2.Name = "sub1";
                        objSubreport2.SubreportName = "sub1";
                        //rptClientDoc.ReportDefController.ReportObjectController.Modify(rptClientDoc.ReportDefController.ReportObjectController.GetAllReportObjects()[crReportObject.Name] as CrystalDecisions.ReportAppServer.ReportDefModel.SubreportObject, objSubreport2);
                        rptClientDoc.ReportDefController.ReportObjectController.Add(objSubreport2, rasSection, -1);
    I don't recall now what I was testing but all of the basics are there to replace the dummy subreports with your new ones.
    I DID NOT test this with more than 40 subreport objects either so you may still run into the SDK limit. We may have to ask the Report Designer Resource if this can be handled in the report by using Conditional suppression...
    Don

  • [Answers] Parent section with all childs of all members

    Hi all,
    I am trying to do a pivot table having in 'Sections' a parent hierarchy level, and the child in 'Columns' , so in every section created I get all the members of the child level with empty values.
    Normally we should have in a specific section only the childs of the corresponding parent level member, How can we do this plz.
    If it's not very well explained please tell so.
    Thanks

    I'm sorry, Elazhari, I am a bit confused.
    Are you saying there is an error or problem, or you just don't know how to do it?
    Do you have the parent-child hierearchy set up correctly in your rpd? If so, it should be no problem. Say you have Regions>District>Branches with this hierarchy set up.
    Then in your pivot table, you can have Regions in the "Pages" section, District in the "Sections" section, and the Branches will be in your rows.
    Under each parent level, the children would be as you would expect. I anticipate that there is more, so if this doesn't help you, please supply more information.

  • Adding a  Page to section causes TOC error

    I have the following document with the section and page setup:
    Front Cover - pg A  - Section : letters, start at 1 (A)
    Inside Page - pg B
    About Page - pg i - Section: roman numerals, start at 1 (i)
    TOC page - pg ii
    Desc Page - pg 1 - Section: arabic numbers, start at 1
    Desc Other Page - pg 2
    Inside Back Page - pg 3
    Back Cover - pg C Section: letters, start  at 3 (c)
    I got the following function in c#:
    private static void AddPageToSection(Document doc, Page page, int pageStartNumber, idPageNumberStyle style)
       Section section = doc.Sections.Add(page);
       section.ContinueNumbering = false;
       section.PageStart = page;
       section.PageNumberStart = pageStartNumber;
       section.Style = style;
    I have the following method calls:
    AddPageToSection(doc, doc.Pages[1], 1, idPageNumberStyle.idLetters); // Cover page
    AddPageToSection(doc, doc.Pages[3], 1, idPageNumberStyle.idRomanNumerals); // About page
    AddPageToSection(doc, doc.Pages[5], 1, idPageNumberStyle.idArabicNumbers); // Desc page
    AddPageToSection(doc, doc.Pages[5], 3, idPageNumberStyle.idLetters); // Back cover page
    When I run the code, it throws the error when it tries to generate the toc:
    document.CreateTOC(document.TOCStyles[1], true, book, Type.Missing, true, Type.Missing);
    It works fine IF only the cover page is added to the section. If any other page is added to a section, it throws the error:
    Error HRESULT E_FAIL has been returned from call to a COM component.
    Why is this happening? Indessign is Desktop CS 5 with all patches installed. C# and .NET are both supported according to Indesign Documentation.

    I might meet the same problem and spent a day to solve it, i use InDesign 5.5, some indesign files can use the createTOC, and some files just through error in javascript or HRESULT_FAIL in VB.NET, here is my code:
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;
    var doc = app.open(myFiles[i], false); <--- you should set it to true
    var myStorys = doc.createTOC(tocStyle, true, undefined, [myX1, myY1]);
    the key point is when i open the document with false, the error will happen again with some files, but if this parameter set to true, it's just ok.
    Too few information from support person to handle the problem... we have to try the script to solve the problem....

  • When  in design view site is perfect, but in live all the sections disappear?

    First I am not a website designer, I have enough experience over 20 years to screw up.  I have the latest version of DW and trying to learn the new system of sections and div over tables.  here is the site http://www.labradoodle-breeder.com/BaseballTampa/Index.html when it is in design view it is just want I want, but in live all the sections disappear?

    okay, did that and it passed now, but it is still the same. please help and I so appreciate your help
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <TITLE>Dream Makers Youth Baseball Club, Tampa FL</TITLE>
    <META NAME="keywords" content="baseball tampa,baseball youth tampa,baseball lutz FL,youth baseball league lutz, baseball league tampa, baseball facility tampa, baseball facility lutz, baseball batting cage lutz fl, batting cage, lutz, batting cage tampa, batting cage tampa fl,baseball training fl, baseball private lesson tampa florida, reggie williams baseball, professional baseball training tampa florida, 10u,12u,13u,14u,16u,baseball, club baseball,florida, u10,u12,u14,u16, u10 baseball tampa, u12 baseball tampa, u14 baseball tampa, u16 baseball tampa,10u baseball tampa, 12u baseball tampa, 14u baseball tampa, 16u baseball tampa,baseball club youth">
    <META NAME="description" content="Youth Baseball training program, baseball team and professional baseball training facility">
    <META NAME="Robots" CONTENT="Index,ALL">
    <meta name="msnbot" content="index, follow">
    <META NAME="googlebot" CONTENT="index,follow">
    <META NAME="allow-search" CONTENT="yes">
    <META NAME="revisit-after" CONTENT="3 Days">
    <META NAME="Rating" CONTENT="General">
    <META NAME="language" CONTENT="en">
    <META NAME="distribution" CONTENT="Global">
    <META NAME="Classification" CONTENT="tampa baseball">
    <style>
    #navigation li {
      font:14px Palatino Linotype, Arial;
      display:inline;
      list-style-type:none;
    #navigation a {
      padding:25px 35px;
      background-color:#000;
      color:#FFF;
      text-decoration:none;
    #navigation a:hover {
      background-color:#993333;
      color:#000;
    #MainBaseball {
    #SectionBaseball {
      background-color: #993333;
      padding: 0;
      float: left;
      height: 215px;
      width: 300px;
      margin-left: 75px;
      margin-top: 2px;
      margin-right: 10px;
      margin-bottom: 10px;
    #2BaseballTampa {
      margin-top: 2px;
      margin-right: 75px;
      margin-bottom: 10px;
      padding-top: 20px;
      padding-right: 20px;
      padding-left: 20px;
      padding-bottom: 20px;
      float: right;
      height: 215px;
      width: 0;
      background-color: #000000;
      font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
      font-style: italic;
      font-size: 50px;
      text-align: center;
      color: #FFFFFF;
      display: inline;
    #3BaseballTampa {
      background-color: #993333;
      height: 125px;
      width: 0;
      margin-left: 75px;
      clear: both;
      margin-right: 75px;
      font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
      font-size: 36px;
      color: #FFFFFF;
      padding: 20px;
      text-align: center;
      margin-top: 10px;
    #4BaseballClub {
      background-color: #000000;
      clear: both;
      float: left;
      height: 0;
      width: 300px;
      margin-left: 75px;
      padding: 40px;
      color: #FFFCFC;
      font-size: 36px;
      margin-top: 10px;
    #BaseballCoach {
      margin-top: 75px;
      margin-right: 75px;
      margin-left: 75px;
      margin-bottom: 10px;
      text-align: center;
      overflow-x: visible;
      overflow-y: visible;
      visibility: inherit;
      width: 1000px;
    #BattingCageFooter {
      margin: 75px;
      clear: both;
    </style>
    <style type="text/css">
    <!--
    .Baseball {
      color: #000;
    .BaseballFont {
      font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    .Baseball p {
      color: #FFF;
    .Baseball blockquote p {
      font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    .FloridaBaseball {
      font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    .tampabaseball {
      font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    .BaseballTrainingTampa {
      font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    a:link {
      color: #FFF;
    body,td,th {
      font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
      font-size: 16px;
    .Baseball blockquote p a {
      font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
    .FloridaBaseball a {
      color: #000;
    .tampabaseball em {
      color: #FFF;
    -->
    </style>
    </head>
    <header class="Baseball training Tampa Header" id="BaseballCoach">
    <nav>
      <div id="navigation">
      <ul>
        <li><a href="#">Home</a></li>
        <li><a href="Tampa_Baseball_youth_coach.html">Coaching</a></li>
        <li><a href="Baseball_Club_Lutz_Tampa.html">Baseball Club Program</a></li>
        <li><a href="Baseball_Softball_Private_Lessons_Tampa.html">Private Lessons</a></li>
        <li><a href="Batting_Cage_Tampa.html">Training, Batting Cage Facility </a></li>
      </ul>
    </div>
    </nav>
    </header>
    <main class="Main Baseball" id="MainBaseball">
        <section class="Section Baseball" id="SectionBaseball"><img src="BaseballTampaYouth.JPG" width="300" height="215" alt="Baseball Tampa" /></section>
        <section class="2 Baseball Tampa" id="2BaseballTampa">If you have the time and the desire we will change your life</section>
        <section class="3 Baseball Tampa" id="3BaseballTampa">Our focus is on a building a team with a passion for baseball</section>
        <section class="4 Baseball Club" id="4BaseballClub">We provide a state of the art facility and a positive, professional coaching staff to provide a framework for consistent</section>
      </main>
      <footer class="Batting Cage Footer" id="BattingCageFooter">
        Dream Makers Baseball 1641 Land O Lakes Blvd Lutz, FL 33549
        Phone: (813) 495-6998 <a href="mailto:[email protected]">Email: [email protected]</a>
        Monday-Friday 11am - 9pm, Saturday and Sunday's 7am - 7pm
      </footer>
    </body>
    </html>

  • Section, article or div?

    I am learning HTML 5 - going pretty smoothly.
    My question is that I have a home page, header, menu and below this 3 content blocks, evenly spaced. They each contain various copy, with header text. For example,
    Column 1
    About Us
    Lore Ipsum...
    Our Advantage
    Lore Ipsum...
    Column 2
    Our Products
    Lore Ipsum...
    Column 3
    Contact Form
    Twitter Feed
    Contact Us
    Lore Ipsum...
    What is the best markup for this? Normally I would but each column in a div. Would this be best?
    <div id="column1">
         <section>
         <h2>About Us</h2>
        <p>Lore Ipsum...</p>
         </section>
         <section>
         <h2>Our Advantage</h2>
         <p>Lore Ipsum...</p>
         </section>
    </div>
    <div id="column2">
         <section>
         <h2>Our Products</h2>
         <p>Lore Ipsum..</p>
         </section>
    </div>
    <div id="column3">
         <form...
         <div id="twitter">
              <script...>
         </div>
         <section>
         <h2>Contact Us</h2>
         <p>Lore Ipsum...</p>
         </section>
    </div>

    <div id="column1">
         <section>
         <h2>About Us</h2>
        <p>Lore Ipsum...</p>
         </section>
         <section>
         <h2>Our Advantage</h2>
         <p>Lore Ipsum...</p>
         </section>
    </div>
    I'm also new to HTML5 but in this case I would use 3 sections.
    Note in the quoted example that you're using a div#column1 followed by a section... you probably don't need that. Simply use a section and use some css3 selectors to target the section you need.
    In my opinion you don't even need the "column 1, 2 and 3". Just 3 sections will do depending on what you're trying to accomplish.
    Anyway, this is just my oppinion and as I said, I'm still learning html5.

  • Moving Manual NAT to section 3 (after auto nat)

    Hi All,
    We have 3 sections of NAT
    1>Manual NAT
    2>Auto NAT
    3>Manual NAt after Auto.
    Lets say on ASA  we config Manual and Auto Nat.
    Now Order of NAT  is
    1>Manual
    2>Auto
    If i move the Manual NAT  to section 3 of NAT  which is Manual NAT  after auto NAT.
    Now Order of NAT  is
    2>Auto
    3>Manual NAT  after Auto.
    Now when i try to do Process Manual NATafter auto  section number 3 it does not work as it hits Auto NAt and does not go down.
    Need to know the reason behind this?
    Regards
    MAhesh

    Also as a little side note,
    There is also difference in the ordering of the NAT configurations depending on the Section
    Section 1 and Section 3 Manual NAT rules are always gone through in the order you see them in the actual CLI configuration. So you might have 2 completely working rules BUT if they are in the wrong order it might be that other one of them is never used
    Section 2 Auto NAT rules are processed in an order that you dont usually decide yourself. The ASA puts them in order according to how they were configured.
    So in a nutshell. You can manually set the order of the Manual NAT rules but Auto NAT rules are ordered automatically by the ASA itself.
    You can see the current order of the Auto NAT rules with the command
    show nat
    - Jouni

  • How can I set OWA to use Public by default and hide that section from OWA?

    I have an Exchange 2013 deployment that needs a customized OWA page.  I've already run Set-OwaVirtualDirectory "ex1\owa*" -LogonPagePublicPrivateSelectionEnabled $True to show the Public option.  I've also edited the logon.aspx
    file to set the checkbox to be unchecked by default.  My problem is I need to hide that entire line, I don't want users to see that section at all as if I never ran the above command.  When I was testing hiding it with <!-- --> it hid it but
    caused that piece to stop working as it went back to private.  Has anyone been able to accomplish this or can clue me in on how to do this?  Thank you in advance.

    Hi,
    I suggest we ask the question on Exchange Development Forum:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=exchangesvrdevelopment&filter=alltypes&sort=lastpostdesc
    Regards,
    Simon Wu
    TechNet Community Support

  • Is there a way to create a link to jump to a section of a page with iWeb?

    For example, if you have a list of items categorized in alphabetical order, can you create a menu bar with the letters of the alphabet, and jump to each section by clicking on a letter?
    Thanks for any assistance.
    HM.

    Go to..
    http://discussions.apple.com/thread.jspa?threadID=1113214&tstart=125

Maybe you are looking for

  • When I try to install iTunes it says error 2.

    So I was going through my computer and uninstalling unnecessary thing,but then I uninstalled iTunes and some weird other apple soft wares. I tried reinstalling it an it said error 2 apple application support not found uninstall then install again. I

  • Patch error in Weblogic server9.1 & 9.2

    :Ohi, i am using weblogic 9.1 and 9.2 on windows xp. when i click smart update to get patches i am getting an error: "an unknown error occured upgrading the patch client ", when i have a BEA support id and password , i am unable to see error in log f

  • PCIe Graphics Card with Magma T/Bolt Expansion box

    Does anyone here have a good or bad experience with the Radeon 5770 or 5870 cards used in a Magma Thunderbolt expansion box in conunction with a MacMini? I'm looking to purchase a graphics card to go into my Magma box, but not sure which card will be

  • Layout designing

    hi   whenever a business partner interacts with CSR <call center representative> he may not be able to identify automatically & therefore the CSR would have to search for business partner with the details that he has been provided with.   For this pu

  • Open Doc File with Word via Remoteapp

    Server 2012 with RDS. We publish office to some client pc's that do not have office installed locally. Is it possible to associate office files like doc, xls and so on so that when the user clicks to open an office file, the file will use the publish