Forums: Index → Support Requests → Adding section editing via EDIT links to Oasis
Fandom's forums are a place for the community to help other members.
To contact staff directly or to report bugs, please use Special:Contact.
To contact staff directly or to report bugs, please use Special:Contact.
In the Monobook skin, no matter how high the edit level (e.g., <h6>
), there is always an [edit] link for secton editing. In contrast, in the Oasis skin, the [edit] links for secton editing cease above a certain level ((e.g., <h3>
), I think?). What is the CSS to add [edit] links for secton editing for the higher levels? I reckon it has something to do with WikiaArticle
and/or mw-headline
, but I’m not sure of the exact syntax.
.WikiaArticle h4 h5 h6 .mw-headline { }
If that’s correct, I’m not sure what goes inside the { } brackets. Any ideas? Thanks! — SpikeToronto 22:18, July 24, 2011 (UTC)
- I don't think your initial CSS is correct. You should be turning display off for
.editsection
class or something like that. I only half get how CSS works. I tried to turn off the edit links for H2 and H3 but ended up completely hiding the H2 header, although I did hide the "edit" for H3. -- Fandyllic (talk · contr) 24 Jul 2011 4:04 PM Pacific
This should work (h3 and h4 headlines already have edit links by default):
.WikiaArticle h5 .editsection, .WikiaArticle h6 .editsection { display: inline; }
-- Porter21 (talk) 23:28, July 24, 2011 (UTC)
.WikiaArticle .editsection {display: inline !important;}
also works -- RandomTime 23:42, July 24, 2011 (UTC)