• Hi there

    Please have a look at my site and if possible please give me some assistance with the two items I am trying to correct. My site is at http://www.thegapmedia.com
    I am using Mono-Lab’s Piano Black Template

    I would like to remove the divider line from the left of “Home” in the menu. I have found the line of coding concerns which tells me the line is 1px. If I change it to 0px or ‘none’ all the divider lines disappear on the menu and I just want the first one to go.

    Secondly the ‘Search’ box and the ‘RSS Feed’ are supposed to be at the right hand side of the header – RSS right to the right and SEARCH to the left of it.

    I am very new to WordPress and don’t think I have done too badly with this site but really need to fix the two problems above.

    Thanks
    gary

Viewing 1 replies (of 1 total)
  • In style.css if you change border-left to border-right it will do that but it will put a line at the end of your navigation too. If you dont want that you need to make a new style completely for the first one.

    .menu li {
    <strong>border-right:1px solid #222222;</strong>
    float:left;
    height:55px;
    padding:0 18px;
    position:relative;
    z-index:100;
    }

    For search bar

    #search-area {
    background:url("img/search-area.gif") no-repeat scroll 0 0 transparent;
    display:inline;
    <strong>float:right;</strong>
    height:29px;
    margin:70px 25px 0 0;
    position:relative;
    width:183px;
    }

    For RSS Feed

    #rss-feed {
    background:url("img/rss.gif") no-repeat scroll left top transparent;
    color:#777777;
    display:inline;
    <strong>float:right;</strong>
    font-size:11px;
    height:25px;
    margin:62px <strong>10px</strong> 0 20px;
    padding:18px 0 0 55px;
    }

    Are they supposed to be in the center?

Viewing 1 replies (of 1 total)

The topic ‘Please Help With My Header’ is closed to new replies.