Tagged: CSS
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.
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
thank you! It works great!
how would you get this to align to the right of the screen? Would I use a div align?
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
Should I use the custom.css file? and should I save it in my child theme, so it won’t get overwritten?
Hey!
You can use either the Quick CSS or the child theme style.css
Best regards,
Josue