Community Central
Community Central
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.
Archive
Note: This topic has been unedited for 5075 days. It is considered archived - the discussion is over. Information in this thread may be out of date. Do not add to unless it really needs a response.


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
Thanks for trying Fandyllic. It must be pretty difficult if you can’t figure it out! Remember, though, that I want to turn on the [edit] links. But, then, I guess you were trying to reverse engineer it, eh? Thanks! — SpikeToronto 23:14, July 24, 2011 (UTC)

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)
It works! I used the one from RandomTime and it works perfectly. Thanks!! — SpikeToronto 08:44, July 25, 2011 (UTC)