• Hello, I recenly finished making my website and now I’m in the stage of refining it before I share it to people.I’m a complete beginner to making website so I would appreciate step by step explained answers ??

    When you go to my website: https://greennebula.space/clip/
    You can see that the text starts quite low. I want to put a short description just a little bit below the menu bar and above where the video currently is positioned. How do I make the text start at the top of the page?

    Theme used: Optimizer

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • .page_head {
    float: left;
    min-height: 150px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    }

    Remove hight from this class

    .page_head .pagetitle_wrap {
    margin: 40px auto;
    width: 85%;
    }

    Remove margin from this

    #content {
    float: left;
    margin-top: 30px;
    width: 100%;
    }

    Remove margin from this

    Thread Starter greenshimmy

    (@greenshimmy)

    Thank you for your reply Shivani-Rana

    where do I go to remove those??

    Replace this:-
    .page_head {
    float: left;
    min-height: 150px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    }

    to

    .page_head {
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    }
    ———————-
    Replace this :-

    .page_head .pagetitle_wrap {
    margin: 40px auto;
    width: 85%;
    }

    To

    .page_head .pagetitle_wrap {
    width: 85%;
    }
    ———————-
    Replace this :-

    #content {
    float: left;
    margin-top: 30px;
    width: 100%;
    }
    To
    #content {
    float: left;
    width: 100%;
    }

    In your style.css

    Thread Starter greenshimmy

    (@greenshimmy)

    I’m a little confused because there are similar words in my style.css but not the exact same ones.

    Will you please send me you style.css code here

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to make text start from top of the page??’ is closed to new replies.