Comprehensive Guide on the Top 10 Siebel EAI Interview Questions and their Answers

6/22/2023 No Comment
What is Siebel EAI, and what are its key components? 
Siebel EAI (Enterprise Application Integration) is a set of tools, technologies, and methodologies provided by Siebel Systems for integrating the Siebel application with other external systems. It allows seamless data exchange and communication between Siebel CRM and other applications. The key components of Siebel EAI include integration objects, business services, adapters, workflows, and EAI object manager. 

Explain the various integration methods available in Siebel EAI. 
Siebel EAI supports multiple integration methods such as Web Services, EAI Adapters, File-based Integration, Messaging, and Database Integration. These methods enable integrating Siebel CRM with other systems using different protocols and standards. 

How does Siebel EAI handle data transformation and mapping? 
Siebel EAI provides various tools and techniques for data transformation and mapping. The EAI Siebel Adapter and the EAI XML Converter are commonly used for transforming and mapping data between different formats, such as XML, XSD, and Siebel Integration Object formats. These tools allow developers to define mappings and perform data transformations according to the specific integration requirements. 

 What are the different types of adapters provided by Siebel EAI, and how are they used? 
Siebel EAI offers several adapters, including the EAI HTTP Adapter, EAI JMS Adapter, EAI MSMQ Adapter, EAI MQSeries Adapter, and EAI File Adapter. These adapters are used to integrate Siebel CRM with external systems through different communication protocols and messaging systems. They provide the means to send and receive data, invoke web services, and interact with various technologies. 

Can you describe the publish-subscribe mechanism in Siebel EAI? 
The publish-subscribe mechanism in Siebel EAI enables real-time event-based communication between Siebel components and external systems. It involves publishing events or messages by a publisher component and subscribing to those events by one or more subscriber components. When an event occurs, the publisher notifies the subscribers, allowing them to take necessary actions or update data accordingly. 

What is the purpose of the EAI Object Manager in Siebel EAI? 
The EAI Object Manager in Siebel EAI is a component responsible for handling inbound and outbound integration requests. It manages the execution of workflows, business services, and adapters required for integrating Siebel CRM with external systems. It acts as an interface between Siebel components and the external world, handling data exchange and processing. 

How does Siebel EAI handle real-time and batch integrations? 
Siebel EAI supports both real-time and batch integrations. Real-time integrations are typically handled using web services, messaging, or direct database integration methods, allowing immediate data exchange between systems. Batch integrations involve processing data in large volumes at scheduled intervals using file-based integration or EIM (Enterprise Integration Manager) techniques. 

What are some common challenges faced during Siebel EAI implementations, and how would you overcome them? 
Common challenges in Siebel EAI implementations include data transformation complexities, performance bottlenecks, error handling, and version compatibility issues. To overcome these challenges, it is crucial to thoroughly understand the integration requirements, design robust data transformation logic, optimize performance through caching and tuning, implement comprehensive error handling mechanisms, and ensure compatibility between Siebel versions and external systems. 

Can you explain the concept of data validation and error handling in Siebel EAI? 
Data validation in Siebel EAI involves ensuring the accuracy, completeness, and integrity of the data exchanged between Siebel CRM and external systems. This can be achieved through pre-defined validation rules, business service methods, or scripting techniques

Important SQL Queries in Siebel

7/05/2016 No Comment

Some of the most commonly used SQL queries in Siebel to retrieve information from the database.

SQL Query to find partners in Siebel.

SELECT COUNT (*)
FROM siebel.s_org_ext
WHERE row_id IN
    (SELECT a.row_id
     FROM siebel.s_org_ext a,
          siebel.s_org_ext_x ax,
          siebel.s_postn p,
          siebel.s_bu I
     WHERE a.row_id = ax.par_row_id
       AND a.pr_postn_id = p.row_id
       AND a.bu_id = i.row_id
       AND ax.attrib_35 = 'Delete'
       AND i.name NOT LIKE 'Delete%')
  AND prtnr_flg <> 'N'; 

SQL Query for pulling up active and expired assignment rules

SELECT a.created,
  (SELECT login
   FROM s_user
   WHERE row_id = a.created_by), a.last_upd,
  (SELECT login
   FROM s_user
   WHERE row_id = a.last_upd_by), a.NAME,
                                  a.eff_start_dt,
                                  a.eff_end_dt
FROM s_asgn_grp a
WHERE EXISTS
    ( SELECT *
     FROM s_asgn_grp_obj
     WHERE asgn_object_name = 'Service Request'
       AND a.row_id = asgn_grp_id)
  AND (eff_end_dt IS NULL
       OR eff_end_dt > SYSDATE)

Query to find the division and position of the Login:

SELECT div.name AS Division,
       div.loc AS LOCATION,
       pos.name AS POSITION,
       u.login AS Login
FROM s_org_ext div,
     s_postn pos,
     s_user u
WHERE pos.ou_id = div.row_id
  AND pos.pr_emp_id = u.row_id
  AND u.login ='BMARK

SQL Query for Assignment rules for a particular user

SELECT distinct(a.name)
FROM s_asgn_grp a,
     S_ASGN_GRP_EMP b
WHERE b.asgn_grp_id = a.row_id
  AND b.EMP_ID = '1-AN0VX'

SQL Query to Find Template of an Activity

SELECT name
FROM s_tmpl_planitem
WHERE row_id IN
    (SELECT TMPL_PLANITEM_ID
     FROM s_evt_act
     WHERE todo_cd LIKE 'Pend%')

Query to find the dedicated users who are currently logged in

SELECT username,
       schemaname,
       osuser,
       terminal,
       program,
       TYPE,
       status
FROM sys.v_$session
WHERE username NOT LIKE 'SADMI%'
  AND program = 'siebel.exe' 

SQL Query for finding accounts belonging to a specific organization

SELECT row_id,
       name
FROM siebel.s_org_ext
WHERE row_id IN
    (SELECT a.row_id
     FROM siebel.s_org_ext a,
          siebel.s_org_ext_x ax,
          siebel.s_postn p,
          siebel.s_org_int I
     WHERE a.row_id = ax.par_row_id
       AND a.pr_postn_id = p.row_id
       AND a.bu_id = i.row_id
       AND ax.attrib_35 LIKE 'Disq%'
       AND a.PR_POSTN_ID<>'0-5220'
       AND i.name LIKE 'GE Capital%') 

SQL Query to find when was a user added to a responsibility

SELECT login,
       pr.*
FROM S_PER_RESP pr,
     s_user u
WHERE resp_id = '1-N6DW8'
  AND pr.per_id = u.ROW_ID
  AND Login IN ('BMARK') 

SQL Query to find mobile users last synchronization sessions

This query displays each active mobile user, the number of sessions since last extract, their extract date and last sync date.
SELECT T7.NAME "Userid",
       T6.FST_NAME,
       t6.last_name,
       ep.x_attrib_35 "Bus Comp",
       ep.x_attrib_34 "Parent RM Div",
       T7.APP_SERVER_NAME,
       t2.Last_file_num "Total sessions",
       decode(t2.last_file_num, 0, t2.last_upd, NULL) "Extracted",
       decode(t2.last_file_num, 0, to_date(NULL, 'mm/dd/yyyy'), t2.last_upd) "Last sync"
FROM SIEBEL.S_DOCK_STATUS T2,
     SIEBEL.S_CONTACT T6,
     SIEBEL.S_NODE T7,
     siebel.s_emp_per ep
WHERE t7.emp_id = t6.PAR_ROW_ID
  AND T7.ROW_ID = T2.NODE_ID
  AND T7.NODE_TYPE_CD = 'REMOTE'
  AND T2.TYPE = 'SESSION'
  AND T7.EFF_END_DT IS NULL
  AND t2.local_flg = 'N'
  AND t6.par_row_id = ep.par_row_id
ORDER BY T7.NAME

SQL Query to find Organization of an Opportunity

SELECT name
FROM s_bu
WHERE row_id =
    (SELECT bu_id
     FROM s_opty
     WHERE row_id = '1-2BM7S8')

SQL Query to find Division of an Opportunity 

SELECT name
FROM s_org_ext
WHERE row_id IN
    (SELECT ou_id
     FROM s_postn
     WHERE row_id IN
         (SELECT pr_postn_id
          FROM S_opty
          WHERE row_id = '1-7VC0PN')) 

Summary of Siebel Architecture Best Practices

5/30/2016 1 Comment

Siebel Administration and Architecture Best Practices Summary

We have discussed in detail before about the best practices to be followed by a Siebel Administrator for optimal performance of a Siebel application. Here we are presenting a summary if the client , application server, gateway server and database server best practices.

Client Best Practices

Functional Testing
Test the application using every type of client that is expected to access it.

Performance Testing
Include the client environment in performance tests and establish configuration requirements for the client environment as part of benchmark testing.

Select the appropriate client
Ensure that the appropriate client is selected for deployment based upon requirements, both in terms of functionality and performance.

Set Expectations
When preparing to deploy the Siebel eBusiness application, ensure the user community understands the functionality delivered by the chosen client(s).

Network
Use performance benchmark testing to understand the network requirements of the customized Siebel eBusiness application.When designing the application, ensure that the design caters for the differing likely network connection quality depending on the channel being used.

Gateway Server Best Practices

High Availability
Employ a high-availability solution for the Name server to provide a failover in the event this component fails.

Backup
Ensure that the Name server files are part of the regular system back strategy.

Schedulers
When a clustered Name server is utilised, the Resonate Central Dispatch schedulers must be installed onto different machines. Use dedicated scheduler machines when the user community is to exceed 1,000 concurrent users.

Scheduling Rules
Always preserve the supplied scheduling rules in order to facilitate an easy recovery should an error be made. Adjust the scheduling rules carefully and in a controlled and orderly fashion, making small incremental adjustments.

Benchmark Testing
Deployments of many thousands of users, either concurrent or in total should be benchmark tested to ensure the hardware resources for the scheduler service is adequate.

Application Server Best Practices

High Availability
Use load balancing to achieve high availability of those components that support load balancing. Use hardware cluster solutions for those servers hosting components that are not load balance enabled.

Resonate Central Dispatch
Include resonate Central Dispatch if it is likely to be needed in the future, regardless of whether load balancing is required from inception.

Backup
Ensure the SRF, CFG and application specific files are secured in such a way that they can easily be reinstated should they be lost or corrupted.The directories that are used to support Siebel Remote should be held on a resilient disk array, such as RAID-5, in addition to being secured by backup.

Benchmark Testing
It is essential to conduct performance and scalability testing of all components, including the client environment and network.

Regression Testing
Test a number of scenarios that will give rise to errors. Use results of these errors and the accompanying log files as a knowledge base to assist support personnel.

Logging
Since the volume of data can be very high, it is recommended to run production servers with minimal logging and only increase the logging level if problems are encountered.

Capacity Planning
It is recommended to continually or at least periodically monitor the resource usage of the Siebel Application server.

Automation and Procedures
Ensure that the regular maintenance and administration tasks are automated through scripts and that fully tested procedures are in place.

Database Server Best Practices

Ongoing regular maintenance
Establish maintenance windows to provide for conducting regular maintenance of the database.

Performance testing & tuning
Conduct the testing and necessary tuning effort on a database instance that is representative of the production volume, especially data volumes and distribution.

Resource and database monitoring
Establish procedures and solutions for the ongoing monitoring of the database and the database server, including response times.

Backup strategy
Prior to going into production, establish the backup strategy and solution for the database.

Scalable platform
Ensure a scalable solution is employed for the database solution.

Control data model
Maintain control of the Siebel data model and consider carefully any changes.
Review the chapter “Adding Custom Extensions to the Data Model” in the Siebel Tools Reference document within Siebel Bookshelf before embarking on any changes to the data model.

Conclusion

When implementing Siebel eBusiness applications, there are a number of aspects and best practices that should be considered with reference to the architecture. This document has presented many of the recommendations and best practices that are generally applicable to a Siebel eBusiness Enterprise architecture.

It is important to also consider best practices and recommendations related to other aspects of the Siebel eBusiness application, such as configuration, SmartScript implementation and use of eScript.
In addition to the details contained within this document, Siebel Bookshelf should also be consulted for more complete details, including but not limited to:
  • Performance Tuning Guide
  • Siebel Web Client Administration Guide
  • Siebel Wireless Administration Guide
  • Implementing Load-Balancing with Central Dispatch
  • Setting Up Your Siebel Environment
  • Server Installation Guide (there are Windows and UNIX documents)
  • Server Administration Guide
  • Configuration Guidelines
  • Application services integration reference

Siebel High Interactivity Web Client

5/10/2016 No Comment

High Interactivity Web Client

The high interactivity client framework is ideal for task-intensive, employee-facing applications, such as Siebel Call Center, Sales, Service, and Marketing. It improves user interface response time while maintaining the benefits of a completely Web-based client. It is easy to deploy and it does not require specific Siebel eBusiness application configuration changes.

The Siebel high interactivity framework contains the components shown below:



These components work together to render a rich user interface with:
  • High-performing interactive controls
  • Customized functionality provided by browser scripting
  • Specialized functionality provided by java applets
The browser document object model (DOM) is the foundation for the Siebel HI framework. The DOM provides a standard way to programmatically build, navigate, or update the user interface.

The high interactivity Siebel eBusiness application takes advantage of:
  • Java, for specialized applets like the CTI Toolbar and pipeline charts
  • JavaScript technology for application menus and basic framework functions
  • ActiveX, for features like keyboard accelerators and client integration
  • Browser DOM, which enables features such as sending data-only updates to the server separately from layout updates
The table below summarizes the differences at a high level:



Many usability and performance features are built into Siebel applications and are available solely through the Siebel high interactivity framework:
  • Calendar and calculator pop-ups
  • MVG shuttle applets
  • Keyboard accelerators
  • Drag and drop attachments
  • Rich text editing
  • Email integration
  • Implicit commit (save record)
  • Text value wrapping
These are some additional features of the Siebel high interactivity framework:
  • Query Assistant
  • Selected record chevron
  • Shortcuts and bookmarks
  • Expanded text fields
  • Enhanced scroll bars
  • Double-click selecting
  • Auto-complete pick list
The Siebel high interactivity framework uses advanced browser feature such as the DOM, Java, and ActiveX. Because the HI framework requires these technologies, only specific browsers and platforms can run Siebel eBusiness applications in HI mode. Use the Siebel System Requirements and Supported Platforms Guide to identify the latest platform and browser support information.

Tricky Project Leader Interview Questions

5/04/2016 2 Comments

Project Leader Interview Questions for any job interview.

Dear Readers. Please use the comment section to discuss the answers.
  • Describe in brief about the workshops and training have you undergone for project planning.
  • Suppose a new project has arrived where new set of technical skills are required. How do you ensure that you as well as all the other team members have the required technical skills to deliver and execute the project?
  • In your opinion who is the right person to lead projects?
  • Describe about the various activities you do as a project leader when the project is in the initial phase.
  • Describe in detail how you handle disruptive and non-productive team members?
  • Can you tell us the main difference between a project plan and a project schedule? Why both are important part of a project
  • Tell us about your greatest strengths and weaknesses as a project leader.
  • What are the important documents that you need to maintain as a project leader ?
  • Explain how do you track the activities of the team in your project? How often you communicate to the team about the activities?
  • How do you prepare the status report of your project?
  • Explain the scenarios that had let you to revise your project plan? Where do you store the plan revision frequency document?
  • Explain how you assign tasks and delegate work to your team members?
  • Mention some of the project management tools you have used in your project. How did they help ?
  • What are the main qualities and attributes to be possessed by a good project leader ?
  • There are some projects which  enterprise wide implications. How would you go about handling such a project. Explain what methodologies you adopted as a project leader.
  • If any of the team member comes to you with their personal problems, how do you handle it?
  • Explain with an example how do you choose the appropriate life cycle for a particular project?
  • How often do you communicate with the project manager about the progress of the project?
  • Have you ever used Microsoft Project in your project? 
  • Tell us about the budget for the largest project that you have managed till date?
  • How do you keep the team members informed about the current status, goals and milestones of the project?
  • How do you deal with a team member who is least interested in work ?
  • What do you think are the qualifications and experiences that are required to be an effective project leader?
  • What learning is very important for a project leader ?
  • Describe about the induction processes a project leader must plan for a new team member?
  • Tell us some of the steps that you have taken as a project leader to reduce the stress and tension among team members.
  • What is project schedule and what do you include in it ?
  • Explain how you identify the risks associated with your project. How do you document it?
  • What is Software Project Management Plan (SPMP)? How do you create it ?
  • After coming to office, how do you plan the activities for the day ?
  • How do you calculate the effort estimate for your project? Do you document the estimation procedure ?
  • What is the document yo need to maintain  for your project activities, your schedules and goals and milestones?
  • When and how the senior management review the progress of your project?
  • If you are to find a new project leader what will be the most important qualities you will look for? 
  • How often do you review the work that is done by a team member ?

Siebel Database Server and Best Practices

8/31/2015 No Comment

What is Siebel Database Server

Siebel eBusiness application software supports a number of different relational database systems; the document “Siebel System Requirements and Supported Platforms” contains details of the supported vendors and versions.

Siebel eBusiness software is delivered complete with a database schema that must be created on the chosen database. This schema is managed as part of the Siebel application configuration process and allows for a number of different types of extensions as a result of configuration.

Each Siebel eBusiness component that requires access to the database, such as the Siebel Application server, will use ODBC. The Siebel Application servers will maintain multiple connections to the database server, including support for the user sessions. To avoid many thousands of connections, the Siebel Application server can be configured to use connection pooling. This will cause the Siebel Application server to use a single database connection to service multiple tasks or user sessions.
All data manipulation interactions that occur must do so through a Siebel eBusiness application component, since referential integrity and data quality are controlled at the application layer. Direct insert, update and delete operations against the database are not supported. Although data retrieval operations are permitted directly from the database, Siebel does not guarantee or warrant that the results achieved will be as required.

The Siebel eBusiness database contains user data, reference data and the application definition, also known as the Siebel Repository. Access to the data contained within the database is controlled through users’ responsibilities and positions defined within the application. Database security is not employed to control access to data elements or attributes and as a result, to preserve data security, users must not be given the means to access the database directly.

When defining the database, several accounts will be required. They are typically:
  • Table or schema owner – SIEBEL
  • Application administration user – SADMIN
  • User role for all users – SSE_ROLE
The above is the information the Siebel eBusiness product is supplied preconfigured. The user accounts and roles must be added to the database by the database administrator, as must all user accounts.

Database Server Best Practices

The following best practices relate specifically to the database server component of the Siebel Enterprise. They should be considered in addition to any best practices or recommendations specified by the database vendor or administration team(s).

Ongoing regular maintenance
Establish maintenance windows to provide for conducting regular maintenance of the database. Without these opportunities to conduct maintenance, every task must be arranged separately with the user community and this can lead to user satisfaction issues.

Regular maintenance tasks would include defragmentation of database objects, creating new indexes. The database administrator should establish the program for regular maintenance in accordance with the requirements of the chosen database platform.

Performance testing & tuning
As with all aspects of the Siebel Enterprise, the database server must be the subject of an effective performance test. This must include the initial deployment as well as ongoing releases of new functionality, since these can have a significant impact on overall performance.

Conduct the testing and necessary tuning effort on a database instance that is representative of the production volume, especially data volumes and distribution. Conducting performance tests on a database that has minimal data will not provide an indication of the likely response times, resource requirements or query access plans.

When conducting performance tuning, consider testing new indexes on the database prior to defining them in Siebel Tools and also consider removing indexes. At all times the effect of the index changes must be evaluated for all areas of the application that access the affected data object. An index created to enhance one area of the application may in fact become and impediment to another area, depending how the data is accessed.
When migrating to the production environment, the Siebel Repository must contain the index definitions to be used. The migration process will build the indexes as they are defined in the Siebel Repository.

Resource and database monitoring
Establish procedures and solutions for the ongoing monitoring of the database and the database server. This includes the usage of the server resources, the responsiveness of the database and the general health of the various database objects, such as fragmentation of the database tables. The database vendor should have identified those aspects of the database that require monitoring.

Capacity planning
Capacity planning for the Siebel Enterprise as a whole is a good idea and in particular the database server. Ensure that the results of the resource monitoring are used for capacity planning as well as potential changes in the user community, the usage of the application and changes in application functionality.

Backup strategy
Prior to going into production, establish the backup strategy and solution for the database. When considering the backup strategy, ensure that the system can be easily and relatively quickly recovered.

Scalable platform
When deciding upon a platform for the database server, ensure a scalable solution is employed. Generally, during the production lifecycle of a Siebel eBusiness application, users and functionality are added over time. They each require additional resources and can lead to upgrades being necessary for the database server as well as other components. In general, replacing the database server is one of the most challenging tasks that could be undertaken within a Siebel Enterprise due to the amount of data that could have to be moved.
Avoid this operation as far as possible by ensuring the database server can be upgraded in place.

Control data model
The Siebel eBusiness data model that is supplied with the application offers a rich set of predefined tables and supporting indexes. Using Siebel Tools, the data model can be extended further with additional attributes, new indexes and new tables. Modifying the Siebel data model must not be considered a trivial task, since changes can have significant impacts in areas of the application.

Consider carefully any changes to the data model and consider the following:
  • Maintain central control of the Siebel data model to co-ordinate changes
  • Avoid reusing columns for diverse purposes
  • Include the database administrator to ensure changes are valid
  • Analyse the impact on database size and performance
  • Avoid using joins for frequently required data
  • Employ extension tables where data is not used frequently

FreshDream Blogger Template

4/04/2015 1 Comment

3-column SEO Optimized Blogger Template - FreshDream.

FreshDream is a 3-column Blogger template for personal blogs and article publishing websites. This template is a perfect choice for those who want to make a elegant and fresh looking blog. This simple yet beautiful interface is designed by our team with focus is on user-experience and usability. The theme is highly SEO optimized, and the websites using this template has experienced increase in traffic and pageviews. Template Features: Wordpress Look, 3 Columns, Right Sidebar and Left Sidebar,  Featured Content Slider,  Top Navigation Menu, SEO ready,  Awesome Fonts and thumbnails FreshDream Blogger Theme

FreshDream Core Features

  • Lightweight fresh and clean looking interface with grey background.
  • Related posts widgets with Thumbnails and Hover effect.
  • Highly SEO Optimized.
  • Lightweight Top navigation Menu with CSS3 +HTML Dropdown Menu.
  • Clean Looking threaded comments.
  • Advertisements banner ready - Perfect for Adsense users, right sidebar for Square ad, left sidebar for Skyscraper ad
  • Simple User Friendly Search Box.
  • Numbered Pagination using CSS.
  • Custom Widgets (Facebook Likebox, Recent Comment)
  • Social Share Counter Widget.
  • Auto Blog Post summarize And “Read More” Button.
  • Social Media Buttons integrated below each post.
  • Cool Image Slider for Blogger Posts.

Theme Customization

Configure Dropdown Menu:

Login to blogger dashboard --> Template--> Edit HTML. Find and scroll down to where you see the codes below: Input your menu item by replacing the YOUR_URL with your Content URL and YOUR DESC with the title of the content below.
<div id='cssmenu'> ...... ...... <li> <a expr:href='YOUR_URL'>YOUR DESC</a> </li>

Configure Content Slider:

Login to blogger dashboard --> Layout--> Add a Gadget. Add a HTML/Javascript widget above the Blog Posts and add the below code. Replace the URL with the content URL, IMAGE_URL  with the source path of the image file and TITLE with the content title.
 <script src="http://dimpost.googlecode.com/files/js-image-slider.js" 
 type="text/javascript"></script>
 <div id="sliderFrame">
 <div id="slider">
 <a href="URL_1"><img src="IMAGE_URL_1" alt="TITLE_1" /></a>
 <a href="URL_2"><img src="IMAGE_URL_2" alt="TITLE_2" /></a>
 <a href="URL_3"><img src="IMAGE_URL_3" alt="TITLE_3" /></a>
 <a href="URL_4"><img src="IMAGE_URL_4" alt="TITLE_4" /></a>
 </div></div>
If you face any problems during installation, or find any bugs and errors, please use the comment section to report them, I would be glad to help you. Please also provide your feedback about the template, the improvements that can be made.

CSS Drop Down Menu Without Javascript

12/17/2014 No Comment

Lightweight and Pure CSS Drop Down Menu without Javascript

The menu is created in CSS3 which consists of a nested ul structure to create the second level of the menu. Just copy the below code below to give your website a beautiful, light-weight and flexible Drop down Menu.

HTML Code for CSS Drop Down Menu

<cssmenu>
<ul class="cf">
<li><a href="#">Menu 1</a></li>
<li><a class="dropdown" href="#">Menu 2</a>
<ul>
<li><a href="#">Sub Menu 1</a></li>
<li><a href="#">Sub Menu 2</a></li>
<li><a href="#">Sub Menu 3</a></li>
</ul>
</li>
<li><a href="#">Menu 3</a></li>
<li><a href="#">Menu 4</a></li>
</ul>
</cssmenu>

CSS Code for Drop Down Menu

cssmenu ul {
 text-shadow:0 1px 0 #FFF;
    background: #ddd;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
cssmenu li {
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    min-width: 24.5%;
}
cssmenu a {
    background: #ddd;
    color: #444;
    display: block;
    font: bold 16px/50px sans-serif;
    padding: 0 25px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .30s ease;
    -moz-transition: all .30s ease;
    -ms-transition: all .30s ease;
    -o-transition: all .30s ease;
    transition: all .30s ease;
}
cssmenu .dropdown:after {
    content: &#39; ▶&#39;;
}
cssmenu .dropdown:hover:after{
 content:&#39;\25bc&#39;
}
cssmenu li:hover a {
    background: #ccc;
}
cssmenu li ul {
    float: left;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 35px;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: all .30s ease;
    -moz-transition: all .30s ease;
    -ms-transition: all .30s ease;
    -o-transition: all .30s ease;
    transition: all .30s ease;
}
 

Aired | The content is copyrighted and may not be reproduced on other websites. | Copyright © 2009-2016 | All Rights Reserved 2016

Contact Us | About Us | Privacy Policy and Disclaimer