Before you ask please READ THIS

unshift letters, remove the flow frame.

edited September 2012 in Spaceship Posts: 2
Hello

How or where (css) can i unshift letters (small letters) in the menu?
Is it possible to remove the grey flow frame in the menu and sites?

Danks for help, michael

Comments

  • AirAir
    Posts: 10,970
    Hello:-)

    Firstly you will have to switch to non compressed mode http://apollo13.eu/docs/spaceship/#!/advance_menu or add CSS via some plugin.

    In style.css search for

    #access li a, #access h3.assistive-text {
    color: #4A4A4A;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    }
    and remove text-transform: uppercase;
    pixelesser said: Is it possible to remove the grey flow frame in the menu and sites?
    You mean shadow?

    With regards.
  • Thanks, yes i mean the shadows.
  • AirAir
    Posts: 10,970
    In style.css find (~244)

    #root > header{
    background-color: #fff;
    min-height: 60px;
    padding: 0 75px 0 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    -moz-box-shadow: 0 5px 5px rgba(0,0,0, 0.15);
    -webkit-box-shadow: 0 5px 5px rgba(0,0,0, 0.15);
    box-shadow: 0 5px 5px rgba(0,0,0, 0.15);
    }
    and remove last 3 lines.

    Same in here(~294):

    #content{
    background-color: #fff;
    margin: 0 auto;
    padding: 40px;
    width: 820px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 0 5px 5px rgba(0,0,0, 0.15);
    -webkit-box-shadow: 0 0 5px 5px rgba(0,0,0, 0.15);
    box-shadow: 0 0 5px 5px rgba(0,0,0, 0.15);
    }
    With regards
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!