• Hello everyone,

    And thanks in advance for taking the time to listen to me.

    I have never worked in WordPress before so this may sound real silly but none of what i tried by googling has worked for me, (probably have some wrong html somewhere)

    But I use Visual Composer, and I’ve made a block. A block in which I’ve put:

    <div id=”expertise”></div>
    <div <p><b>Expertise</b></p></div> (This is the one that will be important)
    <div style=”height:1067px;”></div>

    Now how do I move this text from it’s place to wherever I want. I’ve tried a lot of things in my CSS but none of it worked. Is this even correct as is? Or am I missing something.

    ps: I am using a child theme in Bridge as a one-page website.

Viewing 1 replies (of 1 total)
  • Hello Revelon,

    Now how do I move this text from it’s place to wherever I want.

    If you mean on the same page. You can put a css code like this:

    #expertise {
    position: absolute;
    top: 20px;
    right: 100px;
    }

    Just change the ’20’ and ‘100’ value. 🙂 Read more about css position here: LINK

    Let me know if that helps! 🙂

    Best Regards,
    Calvin2

Viewing 1 replies (of 1 total)
  • The topic ‘Basic question (first timer)’ is closed to new replies.