• Resolved gabe

    (@gabevasario)


    Hi, hope this is not answered yet. I searched but baybe not enough…here i go:

    Awesome simple theme you have. Thanks! Few questions:

    1) is it possible and if yes how (even premium option) to remove/edit the “© 2020 — Powered by WordPres“ ”and Anders Noren credits from footer? https://www.screencast.com/t/CodVd8uwyl
    2) Is it possible and if yes how to change the font of the website title? https://www.screencast.com/t/dWqoCRFHN
    3) in the articles section, is it possible and if yes how to remove this area (comments are indeed closed, but it is pretty unuseful https://www.screencast.com/t/usukWX0jvnzv )

    thanks a lot

Viewing 6 replies - 1 through 6 (of 6 total)
  • Christian Sabo

    (@pixelverbieger)

    Hi @gabevasario ,

    #1 is possible and easy; go to your Customizer > Additional CSS and insert the code

    p.credits-left {
    	display:none;
    }
    p.credits-right span {
    	display:none;
    }

    Be sure the top button in the Customizer says “publish”, not only “save” and you’re done. (But to be honest, I think if you do so, it would be fair to keep at least some hint to Anders somewhere else in the site …)

    #2 is possible, too – if you know which font you want to use instead; one possible replacement would be

    div.blog-title {
    	font-family:Helvetica, Arial, sans-serif;
    }

    You can use whatever font name you want, but keep in mind that your visitor’s PC must have this font installed in order to display the text the way you want it.
    https://www.w3schools.com/cssref/css_websafe_fonts.asp

    #3 is easy again 😉

    div.comments,
    #respond {
    	display:none;
    }
    Thread Starter gabe

    (@gabevasario)

    Hey @pixelverbieger thanks a lot for the quick answer! Ok i will try asap. I am not a programmer, nor a css expert…sorry! A lot of things are sure easy for you, but not so much for me…

    Ok i will try the customization myself asap, but i totally agree with you about #1 : Anders deserves credits! So i was thinking as this for the footer customization…https://www.screencast.com/t/GnRQpznL9 what do you think?
    Can you help me with the code for this? In the meantime i will try the #2 and #3 solutions.
    Thanks a whole lot
    Staysafe
    gab

    Thread Starter gabe

    (@gabevasario)

    Ok i tried the code…

    #2 did indeed change the font, but strangely just in the header of the articles pages, not in the homepage…any educated guess?

    #3 It is still there with “comment are closed” written in italian

    As for # 1 i doi not know how to insert a link to Anders page on the right side, as for the left side, the copiright part is ok, i would love to remove the powered by wordpress only

    2020-04-03_09-58-10.jpeg

    Thanks again @pixelverbieger

    Theme Author Anders Norén

    (@anlino)

    Hi @gabevasario,

    To change the typeface of the site title on all pages, add:

    .blog-title { font-family: Helvetica, sans-serif !important; }

    To hide only the “Powered by WordPress” text in the left side of the footer, add the following:

    .credits-left span { display: none; }

    To hide the comments closed text, add:

    .nocomments { display: none; }

    Let me know if that does it.

    — Anders

    Thread Starter gabe

    (@gabevasario)

    Yes anders, it worked smoothly.
    Now i would like you to have some credits for it. you think it is feasible to have a link quoting ” credits ” on the right footer linking to one of your favourite sites (may be your bio page or your theme page?)
    gab

    Thread Starter gabe

    (@gabevasario)

    Anders, is there a way to put the word “Credits” linked to https://www.andersnoren.se/ in the right footer?
    Thanks

    [Post Scriptum: sorry this is silly question but is the minimum i can do ]

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Few customization’ is closed to new replies.