• Resolved jonnyfive

    (@vipperuk)


    Hi

    Firstly I cant give out the url, but these are changes that a pretty straight forward

    I’ve looked at posts on here for similar things but the css code i’ve imputed (which I found on these forums) didnt work most are from threads that are a few months old so I just guessed the theme had been updated and those work around no longer… well work…
    anyway here are my questions

    1. How do I remove the header (HOME) that appears above the text on a page? I want to do it from all pages. I’ve tried downloading css plugins and using the code I’ve previously seen here but that doesnt do the trick.
    so could I have the current css work around also could I have the work around for the same thing via editing the style.css the way I tried removed part of the tagline (I think… it definitely some text from the upper part) so I reverted back and couldn’t find a way to just remove the page header

    2. How do I safely move the text section on a page closer to the top/divider… when I say safely I mean without messing up how it appears on mobile devices

    Thank you in advance for your help

    • This topic was modified 8 years, 3 months ago by jonnyfive.
Viewing 5 replies - 1 through 5 (of 5 total)
  • 1. Use Firebug or the code inspector for your browser to find out the CSS selector for the element you want to remove and give it the property: “display:none;” Basic CSS

    .nav.navbar-nav.navbar-right.nav-menu {
        display: none;
    }

    2. CSS. Basic CSS.

    3. Hire a webdesigner-

    Thread Starter jonnyfive

    (@vipperuk)

    already done that, however altering the h2 line also removes another line of text from the tagline that I want to keep… This was explained earlier

    As for hiring a web designer. Thats not an option, with that being said it would be nice if someone could reply in a helpful manner

    Thanks

    Very strange that the theme designer did not include a class name for the post or page title. Certainly makes it harder to customize without interfering with other h2 elements.

    Try adding this CSS rule:

    
    .page .hentry h2:nth-of-type(1),
    .single-post .hentry h2:nth-of-type(1) {
    	display: none;
    }
    

    This should remove the title from both single pages and single post pages, while keeping them on any blog page excerpts. It should also not hide any other h2 elements in the post or page.

    Thread Starter jonnyfive

    (@vipperuk)

    Thank you crouchingbruin that worked perfectly!!

    Could I ask if you know how to move the text area closer to the top by chance?

    Use this:

    
    .page .blog-post,
    .single-post .blog-post {
       margin-top: 100px;
    }
    

    100px is the current value, adjust as you’d like.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove Home… urgnet help required’ is closed to new replies.