Viewing 15 replies - 1 through 15 (of 15 total)
  • bradchando

    (@bradchando)

    Hello,

    This is usually done be editing your theme’s footer.php file. If you can provide a link to your site, perhaps I can give you a more precise answer as to where to insert the copyright code.

    I hope this helps.

    Thank You,

    Brad

    Thread Starter alexrunhaar

    (@alexrunhaar)

    Thanks. I copied the footer.php and put it in my child theme. I then added what I needed. Cheers

    Thread Starter alexrunhaar

    (@alexrunhaar)

    I cant find where to make the footer smaller though =/

    bradchando

    (@bradchando)

    Glad to help. I’m also glad to hear you are using a child theme. Always a good choice.

    bradchando

    (@bradchando)

    Adjusting the size of the footer can probably be accomplished with an addition to your child theme’s style.css file. Once again, if you can provide me a link, I can give you the specific code to add.

    Thread Starter alexrunhaar

    (@alexrunhaar)

    aha! website: immigrate-to-australia.com

    bradchando

    (@bradchando)

    Are you wanting the light grey area with the three columns to be smaller (Not as tall)?

    Thread Starter alexrunhaar

    (@alexrunhaar)

    Exactly , the height is too much

    Thread Starter alexrunhaar

    (@alexrunhaar)

    I tried to adjust it from

    element.style {
    display: none;
    visibility: visible;
    top: 24px;
    left: 532px;
    position: fixed;
    width: 688px;
    height: 500px;
    opacity: 0;
    }

    to this

    element.style {
    display: none;
    visibility: visible;
    top: 24px;
    left: 532px;
    position: fixed;
    width: 688px;
    height: 300px;
    opacity: 0;
    }
    but didnt work

    bradchando

    (@bradchando)

    Add this code to the bottom of the style.css in your child theme.

    .footer-widgets {
        min-height: 249px;
    }
    Thread Starter alexrunhaar

    (@alexrunhaar)

    Thanks! I thought I was getting better, but seems not. How did you know which code to change? Is it possible to make it even smaller?

    bradchando

    (@bradchando)

    I use the developer tools in Firefox (Ctrl+Shift+I) to inspect the code and then narrow down what elements are causing the issue. You can edit the css live in the browser to see what changes will do the trick.

    I do this every day as my profession, so its second nature. I live and breathe WordPress. ??

    Thread Starter alexrunhaar

    (@alexrunhaar)

    haha , thanks again.

    Theme Author Kaira

    (@kaira)

    Cheers @bradchando… thanks for the help… got to it before I could ??

    bradchando

    (@bradchando)

    Glad to help! I had a few minutes last night and like to make myself useful.

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Copyright in footer’ is closed to new replies.