Hi there,
I created a child theme and inserted my logo into the site branding area. If I upload the logo, the site title enterred into the site-branding area disapears.
I would like to display the site title in the header, right-float next to the logo, but can't find which file to edit. Here is the website : https://repro-gerechtigkeit.de
Thanls for support!
Hello Lam,
Beans is very easy to customize the generated html.
https://www.getbeans.io/documentation/markup-and-attributes
Something like this in the funtions.php should work. You will need to wrap the output with the html you would like.
add_action( 'beans_site_title_link_append_markup', 'my_function_name' );
function my_function_name() {
echo 'HELLO';
}
Cheers, Maurice