Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7049457
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:01:03+00:00 2026-05-28T03:01:03+00:00

I am presently doing a project with menus and trying to implement something which

  • 0

I am presently doing a project with menus and trying to implement something which is the same menu appeared below:

enter image description here

And now I have got which is similar to this menu and trying to modify it but I am stucked with it.

Here is the screenshot of my menu how it looks in chrome:
enter image description here

And this is how it looks in IE8 and firefox:

enter image description here

The problem is I am able to get rounded corners but the gloss and the bump over the menu which is shown in 1st menu is not appearing in my menu as it is showing as flat in chrome,IE as well as firefox.So how do I modify in order to get the same menu as shown in 1st figure.

Here is my menu css:

.menu 
{
height: 18px;
margin-left:318px;
margin-top:10px;
width:914px;
border: 1px solid #d6d6d6;
background: #fff;
padding: 14px;
text-align: center;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background: #1612CE;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#1612CE), to(#3B91F1));
background: -webkit-linear-gradient(#1612CE, #3B91F1);
background: -moz-linear-gradient(#1612CE, #3B91F1);
background: -ms-linear-gradient(#1612CE, #3B91F1);
background: -o-linear-gradient(#1612CE, #3B91F1);
background: linear-gradient(#1612CE, #3B91F1);
behavior: url(css/ie-css3.htc);
}

.blue {
    background : rgb(52,119,210);
    background : -webkit-gradient(linear, left top, left bottom, from(rgb(52,119,210)), to(rgb(34,98,188)));
    background : -moz-gradient(linear, left top, left bottom, from(rgb(52,119,210)), to(rgb(34,98,188)));
    border: 1px solid #2f8893;

}

 .blue li a
 {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.40);

}


a {
    text-decoration: none;
    color: #262626;
    line-height: 20px;
}

ul 
{
     margin: 0;
    padding: 0;
    z-index: 300;
    text-align:right;
}
li 
{
 padding: 0 10px;
    display:inline-block;
}
li:first-child {
    float:left;   
}

This is how I’m showing it:

<div class="menu blue">
    <ul >
        <li class="active"><a href="">Home</a></li>
        <li><a href="">About</a></li>
        <li><a href="">Blog</a></li>
        <li><a href="">Services</a></li>
        <li><a href="">Portfolio</a></li>
        <li><a href="">Contacts</a></li>
        <li><a href="">Back to Article</a></li>
        <li><a href="">How it Works?</a></li>
    </ul>
   </div>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T03:01:04+00:00Added an answer on May 28, 2026 at 3:01 am

    Try this combination of colors: http://jsfiddle.net/TLS3Y/4/

    CSS3 Please! makes all these CSS3 rules so easy 🙂

    .menu {
        border-color: #598FD1 #598FD1 #1A53A2;
        border-style: solid;
        border-width: 2px 1px 3px;
        height: 18px;
        margin-left: 318px;
        margin-top: 10px;
        padding: 14px;
        text-align: center;
        width: 914px;
        background-color: #2A72D8;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#2A72D8), to(#1A53A2));
        background-image: -webkit-linear-gradient(top, #2A72D8, #1A53A2);
        background-image:    -moz-linear-gradient(top, #2A72D8, #1A53A2);
        background-image:     -ms-linear-gradient(top, #2A72D8, #1A53A2);
        background-image:      -o-linear-gradient(top, #2A72D8, #1A53A2);
        background-image:         linear-gradient(top, #2A72D8, #1A53A2);
        -webkit-box-shadow: inset 0px 0px 9px #2A72D8;
         -moz-box-shadow: inset 0px 0px 9px #2A72D8;
              box-shadow: inset 0px 0px 9px #2A72D8;
        -webkit-border-radius: 4px;
         -moz-border-radius: 4px;
              border-radius: 4px;
        -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
        behavior: url(css/ie-css3.htc);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Presently, we've got several main projects each in their own repository. We will have
Presently I have a some legacy code, which generates the op code. If the
Presently I am doing a project on designing and implementing a firewall. Everything is
I have a Java project, Parent , which depends on a Child sub-project (in
I have a winforms application that presently ships with a chm file for context-sensitive
I have a MySQL database of keywords that are presently mixed-case. However, I want
I have this obsession with doing realtime character animations based on inverse kinematics and
I'm trying to import a IntelliJ java web application project (Maven Project) from a
For example: I have two entities named Project and Todo where a project has
I'm trying to configure NAnt to automate my build process - once I've got

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.