Skip to content

Instantly share code, notes, and snippets.

@marklchaves
Last active April 19, 2020 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marklchaves/2c8a19dd79aa67c113cd4e68eb03df64 to your computer and use it in GitHub Desktop.
Save marklchaves/2c8a19dd79aa67c113cd4e68eb03df64 to your computer and use it in GitHub Desktop.
Reply to multiple logos for different pages on the Avada community forum

Reply to multiple logos for different pages on the Avada community forum

Original thread.

Hello @paulstartups,

Thanks for another A2A! I thought the new Avada Theme Builder would support this! Unfortunately, I didn't find it anywhere in the Avada docs.

So, here's how I've done it in the past. It still works for Avada 6.2.2.

/* Avada */

/** 
 * Hide the default logo. 
 *
 * For posts use .postid-2466 format.
 */
.page-id-18 .fusion-logo-link img {
    display: none;
}

/** 
 * Drop in a different logo.
 *
 * The site link is respected.
 */
.page-id-18 .fusion-logo-link {
    background-image: url(https://balistreetphotographer.files.wordpress.com/2019/02/balistreetphotographer-logo-2-slashes-65.png);
    background-repeat: no-repeat;
    background-size: 100%;
    display: block;
    position: relative;
    height: 65px;
    width: 65px;
}

Tested on https://avada.theme-fusion.com/classic/

Learn more including how to get the page/post ID and how to add custom CSS.

Happy coding!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment