Colors and mentions in ARCANE

  • Unknown's avatar

    Hi,

    I’m using ARCANE Theme on wordpress.com.

    What kind of codes should I write in ordre to :

    >>change the black color :
    – above the header (here is the social menu)
    – on the footer
    – on the widget “S’abonner au blog” and have another color instead : #something I can choose

    >>delete the mention of the date and of the author

    >>delete the mention “Catégorie” on this kinf of page : https://cause-autisme.fr/category/initiatives/buzz/

    Thanks in advance for your help.

    Laurence

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello Laurence!

    Dropping this code in your custom CSS area should do the trick:
    1. above the header

    .site-bar {
    	background-color: #0abab5;
    }
    
    /* without this the social icons will have black borders */
    .site-social-menu ul li {
    	border-color: #0abab5 !important;
    }

    2. on the footer

    .site-info {
    	background-color: #0abab5;
    }

    3. on the widget “S’abonner au blog”

    .widget_blog_subscription {
    	background-color: #0abab5;
    }

    4. delete the mention of the date and of the author

    .entry-meta.entry-meta-header-after {
    	display: none;
    }

    5. delete the mention “Catégorie”
    Sorry, but the way the code is structured makes it so this can’t be done.

    Let me know if that doesn’t work!
    Sage

  • Unknown's avatar

    Thanks a lot ! it’s great.

  • Unknown's avatar

    No worries, glad to hear it!

    Sage

  • The topic ‘Colors and mentions in ARCANE’ is closed to new replies.