Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #262553

    I would Like the correct format of the function to replace the back link on the bottom of the enfold them.

    I know I need to apply a code to my child theme functions file, I just need the correct format.

    I want the link to say “website design by Deestone Development”

    Please assist me.

    #262648

    Hey!

    This will do it:

    add_filter('kriesi_backlink', 'avia_backlink');
    function avia_backlink() {
    	return ' website design by <a href="#">Deestone Development</a>';
    }

    Best regards,
    Josue

    #262860

    thank you! It works great!

    #262862

    how would you get this to align to the right of the screen? Would I use a div align?

    #262864

    Hi!

    Yeah, try something like:

    add_filter('kriesi_backlink', 'avia_backlink');
    function avia_backlink() {
    	return ' <div class="custom_text">website design by <a href="#">Deestone Development</a></div>';
    }

    CSS:

    .custom_text{
    float: right;
    }

    Cheers!
    Josue

    #262867

    Should I use the custom.css file? and should I save it in my child theme, so it won’t get overwritten?

    #262868

    Hey!

    You can use either the Quick CSS or the child theme style.css

    Best regards,
    Josue

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.