• Resolved kracker90

    (@kracker90)


    Hi! Obviously I’m not a master in wordpress since I’m asking this question but all I have found till now is just partial answers to my question. I have Custom CSS and I know how to use it…I just need the code.Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hey there kracker90,

    How are you doing today?

    Could you please be more specific on which title you’re referring to and I’ll be happy to try to provide some CSS for you to move it 🙂

    Also posting a link to your site where I can see it would be awesome.

    Looking forward for your response 🙂

    Cheers,
    Bojan

    Thread Starter kracker90

    (@kracker90)

    Hey Bojan. Thank you for the answer.

    I’m talking about the title and description.(header)
    My site is not online,is for a local network.

    I hope is enaugh information.

    Cheers, Kracker90

    Hey there Kracker90,

    I’m assuming that you’re referring to the site title and description only on your home page since otherwise they are already positioned in the top left part of the page.

    To move them top left please try adding following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    http://wordpress.org/plugins/simple-custom-css

    .site-header .site-branding {
      text-align: left;
      top: 15%;
    }

    Hope this is what you’ve wanted. If not please add a screenshot of what you’re trying to move and where so I can better understand it 🙂

    Best regards,
    Bojan

    Hello Kracker90,
    Bojan is correct but there is just a small thing in the code.
    If you want the change only on the home/blog page, you need to add .blog in the code.

    Try pasting this one-

    .blog .site-header .site-branding {
       text-align: left;
       top: 15%;
    }

    Thread Starter kracker90

    (@kracker90)

    Thank you guys!

    It worked. Yes, i was asking just for the home page.

    Have a nice day!

    Thread Starter kracker90

    (@kracker90)

    Thread Starter kracker90

    (@kracker90)

    Glad that helped 🙂

    Have a nice day as well!

    Cheers,
    Bojan

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘how to move title to top-left’ is closed to new replies.