anaraine: Mushu hunched over and growling at the face of the Great Stone Dragon. ([disney] grr face)
Ana ([personal profile] anaraine) wrote in [community profile] style_system2017-04-30 09:19 pm

Page Title Link

I am 98% 100% sure this is a result of the code push (and I don't begrudge the people who wanted this to happen; pretty sure I've seen it come up a couple of times in this community) but I really, really don't want my page title to be a link. That's what the "recent" button is for. Or my username in the navbar.

Is there any way to fix this, without mucking with things in the theme layer?

Thanks in advance!

(If not, I'll just... target the header to strip out the underline and visited link color, I guess. Which would be better than me thinking, this isn't the right page every time I'm dithering about on my account.)
tephra: Fluttershy reading a book. (Reading)

[personal profile] tephra 2017-05-01 06:23 am (UTC)(link)
I suspect making it not a link is a theme layer thing. I've "fixed" mine by setting the color and removing the underline.
syntheid: [Elementary] Watson drinking tea looking contemplative (Default)

[personal profile] syntheid 2017-05-02 03:37 am (UTC)(link)
You can do:

#title:before {
  content: "your title";
}
#title a {
  display: none;
}


Though that will mean you have to edit the CSS every time you want to change the text instead of changing the setting.
jordannamorgan: Danny Kaye as Buzzy Bellew, "Wonder Man". (Bali Boogie)

[personal profile] jordannamorgan 2017-05-03 03:42 am (UTC)(link)
This worked for me (and was exactly what I came here looking for). Thanks so much!
lacrimula_falsa: price badge for 2018 Stony MCU Bingo (Default)

[personal profile] lacrimula_falsa 2017-12-06 04:31 am (UTC)(link)
I second this! This worked flawlessly. Thank you syntheid.