HOW TO LOGIN

1Click here to Login or create new account.
2Confirm your email.
3Login with the credentials to access our support system

If you still have problems, please let us know, by sending an email to support@ace-pros.com . Thank you!

SUPPORT HOURS

Mon-Fri 9:00AM - 6:00PM (Regular)
Sat, Sun - 9:00AM-5:00PM (Premium/Emergency only)

Premium customers do receive extended 24x7 support

CREATE ACCOUNT

*

*

*

*

*

*

FORGOT YOUR PASSWORD?

*

Want to be updated with our latest updates and offers?

HCM SOLUTIONS
Read More +

HCM SOLUTIONS

Ace-Pros provides Human Capital Management (HCM) solutions to increase efficiency for your HR department. From management tools all the way to the correct strategy to implement new tools, we’ve got you covered. Our team is composed of seasoned professionals who are experts in the field. We will sit and work with you to acquire only the best and most functional system for your organization. We are recognized as the leaders in Successfactors Learning Implementations amongst it's partners.

CUSTOM DEVELOPMENT
Read More +

CUSTOM DEVELOPMENT

Begin the project on the right foot - Ace-Pros will work with you to finding and developing the best way to integrate and execute new changes to your business.

MANAGED SERVICES
Read More +

MANAGED SERVICES

Staffing: Ace-Pros, Inc. is the leading provider of professional staffing services in the Washington, D.C. area. We place top Technology, Finance & Accounting, Sales & Marketing, Recruiting & HR and Administrative professionals with the best employers. Our diverse client base represents a wide range of industries, including technology and media, financial services, professional services, energy & green technology, federal services, education and non-profit organizations. Professional Services: We provide complete support to our products and projects as well as our partner products and implementations.

IT Services

IT Services

  • • Database Design and Maintenance
  • • Data Quality Assurance/ Analyses
  • • E-Services Business / Commerce
  • • WEB Application Services
  • • Systems Design, Development, Testing
  • • Talent Management Systems (LMS, TMS)
  • • Successfactors Learning, BizX, SAP Tools
  • • Custom Programming Services
  • • SaaS Product Offerings
Program Management

Program Management

  • • Requirement Management
  • • Project Management
  • • PMO Charter, CCB
  • • Organizational
  • Management & Support
  • • Training & Development
  • • Communications
  • Planning
  • • Change Management
Staffing Solutions

Staffing Solutions

  • • Full & Part-time staffing
  • • Contract Work
  • • Systems Integration
  • • Staff Augmentation
  • • Recruiting Services

Questions or Comments? We always like hearing from our customers

Please reach out to us by sending your comments

WHY CHOOSE US

There are plenty reasons why!!

We have several years of experience with quality consultants

We deliver quality with results

We work with you and ensure success for you every step of the way

DOCUMENTED APPROACHDOCUMENTED APPROACH

We ensure every detail is documented and ensure success for our customers and partners

CREATIVECREATIVE

Delivering a solution requires creativity. We believe that the Creativity is a by-product of experience and knowledge.

CUSTOM SOLUTIONSCUSTOM SOLUTIONS

Every customer requirement is different. We work with our customers and take pride in delivering solutions that meet their needs

GLOBAL REACHGLOBAL REACH

We work with customers from all over the globe. With the current technology, place on the globe does not matter. We are completely based in USA

LATEST TECHNOLOGIESLATEST TECHNOLOGIES

We ensure that our customers are on their latest technologies. We stay on top latest updates to ensure success

HIGHLY RESPONSIVEHIGHLY RESPONSIVE

Our support team boasts a satisfaction rate of 98%. This is well over industry standards

Grid positions/Structure

You can see more details on http://twitter.github.com/bootstrap/scaffolding.html#gridSystem

Live grid example

The default Bootstrap grid system utilizes 12 columns, making for a 940px wide container without responsive features enabled. With the responsive CSS file added, the grid adapts to be 724px and 1170px wide depending on your viewport. Below 767px viewports, the columns become fluid and stack vertically.

1
1
1
1
1
1
1
1
1
1
1
1
2
3
4
3
5
6
1
12

Basic grid HTML

For a simple two column layout, create a .row and add the appropriate number of .span* columns. As this is a 12-column grid, each .span* spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent).

<div class="row">
  <div class="span4">...</div>
  <div class="span8">...</div>
</div>

Given this example, we have .span4 and .span8, making for 12 total columns and a complete row.

SHORCODE DEMOS

The shortcode is quite simple Attach the cols number near grid. Keep in mind you must use the row shortcode.

[grid 1/2/3/4/5/6/7/8/9/10/11/12]...[/grid]
[row]
  [grid 2]
    ...
  [/grid]
  [grid 10]
    ...
  [/grid]
[row]

You can also use the grid shortcodes like this:

[grid3 first/last]...[/grid3]
[grid2 first]
    ...
[/grid2]
[grid10 last]
    ...
[/grid10]

Other examples:

[onethird first/last]...[/onethird]

 

[twothirds first/last]...[/twothirds]

 

[half first/last]...[/half]

Offsetting columns

Move columns to the right using .offset* classes. Each class increases the left margin of a column by a whole column. For example, .offset4 moves .span4 over four columns.

4
3 offset 2
2 offset 1
3 offset 1
3 offset 2
1 offset 2
6 offset 3
2 offset 1
<div class="row">
  <div class="span4">...</div>
  <div class="span3 offset2">...</div>
</div>

Nesting columns

To nest your content with the default grid, add a new .row and set of .span* columns within an existing .span* column. Nested rows should include a set of columns that add up to the number of columns of its parent.

Level 1 column
Level 2
Level 2
<div class="row">
  <div class="span9">
    Level 1 column
    <div class="row">
      <div class="span6">Level 2</div>
      <div class="span3">Level 2</div>
    </div>
  </div>
</div>

Live fluid grid example

The fluid grid system uses percents instead of pixels for column widths. It has the same responsive capabilities as our fixed grid system, ensuring proper proportions for key screen resolutions and devices.

1
1
1
1
1
1
1
1
1
1
1
1
4
4
4
4
8
6
6
12

Basic fluid grid HTML

Make any row "fluid" by changing .row to .row-fluid. The column classes stay the exact same, making it easy to flip between fixed and fluid grids.

<div class="row-fluid">
  <div class="span4">...</div>
  <div class="span8">...</div>
</div>

Fluid offsetting

Operates the same way as the fixed grid system offsetting: add .offset* to any column to offset by that many columns.

4
4 offset 4
3 offset 3
3 offset 3
6 offset 6
<div class="row-fluid">
  <div class="span4">...</div>
  <div class="span4 offset2">...</div>
</div>

Fluid nesting

Nesting with fluid grids is a bit different: the number of nested columns should not match the parent's number of columns. Instead, each level of nested columns are reset because each row takes up 100% of the parent column.

Fluid 12
Fluid 6
Fluid 6
<div class="row-fluid">
  <div class="span12">
    Fluid 12
    <div class="row-fluid">
      <div class="span6">Fluid 6</div>
      <div class="span6">Fluid 6</div>
    </div>
  </div>
</div>

PARTNERING WITH EXCELLENCE

Ace-Pros, Inc. is a Certified Partner with Successfactors, SAP,
Microsoft, CISCO, Sun Microsystems, and Oracle, which enables
us to handle all end-to-end requirements for the successful
implementation and maintenance of our partner’s products.

 

CA Inc Director
Always going above and beyond, quality consultants - made the entire implementation for a complex, multi-million dollar project seemless
HCM Consulting, IT Solutions, Managed Services, Government Solutions - Delivered with Quality at Ace-Pros
TOP
Web Analytics