Hi,
I made this stylesheet in my Confluence:
span#title-text.with-breadcrumbs {
color:transparent; background-image: url('URL IMAGE'); background-repeat: no-repeat; display: block; height: 60px; }
Image is showing OK in Dashboard :
But when I go to space, it's NOT ok...
I don't want to show logo in space, but it's the same class (CSS) in Dashboard. It's possible to create a new class to only show logo in Dashboard?
Can anybody help me?
Thanks!
Change your selector from...
span#title-text.with-breadcrumbs { ... }
to this...
body.dashboard #title-text { ... }
There's no need for the with-breadcrumbs class addition. Basically just find something different between the pages which you can use to differentiate the style.
You got the reason! Thanks Sean!
Best regards,
Dani
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just a general hint:
You must compare the two occurances of that image (in dashboard and space) and try to find differences in the html code around the image. This is not possible in confluence directly. You will need a tool like Firebug for this. If there are differences you can try to make use of them and define different CSS, one with "display: none" and one without.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
a[href="/homepage.action"] img { /*your style here*/ }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't understand your answer. I want to 'hide' logo in tittle space, but SHOW in my Dashboard... I put try this:
a[href="/homepage.action"] img { span#title-text.with-breadcrumbs { color:transparent; background-image: url('URL IMAGE'); background-repeat: no-repeat; display: block; height: 60px; } }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.