Home › Forums › Theme support › Obsession – Logo Image at Home Only › Reply To: Obsession – Logo Image at Home Only
Hi,
you are the first customer ever asked for this feature, that’s why you found nothing in the support forum. There is no option to show the logo only on the homepage, but you can do that easily with CSS. Please add this CSS code in WP admin -> Appearance -> Theme Options -> General -> Extra CSS Content:
div#the_logo {
display: none !important;
}
body.home div#the_logo {
display: block !important;
}