XF 1.5 Remove Background only for profile page

You could create a second background laying above the original one, effectively removing it from sight, but the first indicator on what type of page you are happens 3 levels below the body, so you can't alter it directly from what I see spontaneously.
 
If you declare your background as CSS inline within page_container, you could wrap this conditional around it:

Code:
</head>

<xen:if is="{$contentTemplate} != 'member_view'">
<body{xen:if {$bodyClasses}, ' class="{$bodyClasses}"'} style="background-image:url(yourBG.jpg)">
<xen:else />
<body{xen:if {$bodyClasses}, ' class="{$bodyClasses}"'}>
</xen:if>

<xen:hook name="body">

Untested but that should work..
 
Top Bottom