Remove white line in the header

  • Unknown's avatar

    Hi,

    I’d like to remove the white line under the title of my blog in the header. My CSS knowledge isn’t the best :)

    Also, is it possible to align the right-sided menu (where you can find Disability in Ireland etc) to the top and to the right instead of aligning it to the center and to the left?

    I’d be mighty happy if you could!

    Thanks!

    Willeke

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi

    You need to add this code in you CSS file.This will help you in removing the white line.
    .headline.img-headline is your class name for that div. You just need to add visibility property for that div.

    //code-to-be-added

    .headline.img-headline {
       visibility:hidden;
       }
  • Unknown's avatar

    Hi

    To align the right-sided menu we can align them to right side. You need to make some few addition to the CSS class (.row.six)
    Hope this will be helpful to you.

    //previous code

    .row .six {
        width: 37.5%;
    }

    //new code

    .row .six {
        width: 37.5%;
        margin-right: -5%;
    }
  • The topic ‘Remove white line in the header’ is closed to new replies.