#How do I replace this text with a rectangular logo?

47 messages · Page 1 of 1 (latest)

viscid badge
#

Also, I want it to look like this:

#

I already have the logo done.

marsh wave
#

one of the things under managewiki additional settings, wgWordmark i think

viscid badge
marsh wave
#

yea

viscid badge
#

It worked and I set the width and height, thanks.

viscid badge
# marsh wave yea

By the way... Do you know how to make categories be placed at the page's foot like Vector skin used to do, but for Timeless skin?

marsh wave
#

gonna have to use js, send a link ill poke around a bit

viscid badge
marsh wave
#

yea

viscid badge
#

Thank You. I promise, when I grow up, I'll help you a lot ^^

marsh wave
#

huh, apparently timeless doesnt actually get rid of the categories at the bottom, theyre just hidden on desktop

#catlinks {
  display:block;
}

if u just add this theyll show up, and then u can style it

viscid badge
marsh wave
#

if u inspect element at the end of the content block, theyre there but display:noned

viscid badge
#

Plus, weird how places the categories outside the page.

marsh wave
#

if u make #catlink have a white bg then itll look like its part of the page

viscid badge
#

I see. Aparently, there's no possible to place them inside the page... Also, At least can I put them in a <div> block?

viscid badge
marsh wave
#
#catlinks {
  display:block;
  background-color:#fff;
  padding:1em;
}
#catlinks-sidebar {
  display:none;
}``` this hides the sidebar categories and makes the bottom categories look nicer
viscid badge
#

Great. Thanks.

#

And just one last help and I'm done...

viscid badge
# marsh wave

My infoboxes tends to have this zebra color for the templates...

#

But I don't know what happened, those infoboxes which use diferent colors for something in specific, their row color are missing.

marsh wave
#

???

viscid badge
#

An example of what I mean.

#

No idea what happened, but this started when I change to Timeless (in Vector they were ok and functioning)...

viscid badge
marsh wave
#

Template:CharacterInfobox/styles.css is targeting .fiction>table for the zebra rows, but table is now 3 layers deep from .fiction now for some reason, (.fiction > .content-table-wrapper > .content-table > table)
so just replace .fiction > table with .fiction .grafima-dedomenon

viscid badge
#

But how this problem pop out from nowhere? did Miraheze upgraded into new functions and my previous code became obsolete somehow?

marsh wave
#

hmm, might be that timeless updated to add wrappers to tables (the .content-table-wrapper and .content-table)
if i recall this has been a thing for a while, there were ppl having trouble putting tables next to each other bc of the wrappers, so idk why it suddenly kicked in here

viscid badge
#

or maybe this happens bc i added wikitable inside...

marsh wave
#

could always inspect element to see where the gap is coming from

viscid badge
marsh wave
#

this <p> has the default <p> margins, make it margin:0

viscid badge
#

Would you like me to pass the template link and make an example

#

?

marsh wave
#

its definitely there

viscid badge
#

oops. my mistake. forgive me.

#

Finally, it seems perfect now. Thanks a lot.

viscid badge