I would like to erase the date on the post

  • Unknown's avatar

    I upgraded to be able to erase the date on the posts but I don’t know how to do it. I chose In balance 2 theme because it allows me to display the sticky posts on the front page but when I click on the post the first think I see is “By paulinecourtial / 23/01/2015 / Photomontage / Edit” and I would like it not to appear.
    A second thing I would like to customize is the title of the categories. I don’t want it to appear as “Archive category”. Can I do that with CSS and how do I do it?

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

  • Unknown's avatar

    when I click on the post the first think I see is “By paulinecourtial / 23/01/2015 / Photomontage / Edit” and I would like it not to appear.

    If you paste the code below into your CSS box, that whole line will disappear. If you want just the date to disappear, let me know and I’ll give you different code.

    .entry-meta{
    	display: none;
    }

    A second thing I would like to customize is the title of the categories. I don’t want it to appear as “Archive category”

    The following code removes the title from the archives page completely

    .archive h1.page-title{
    	display:none;
    }

    does that work for you?

  • Unknown's avatar

    Yes it worked perfectly, thank you!
    I have more questions,
    -How can I put each archive’s name of the page in every category, one by one? Ex: Collages (now it is erased, before it was “Archives category: Collages” and I only want Collages)
    -How can can I delete on the bottom of the sticky posts “featured”?
    -The widget “search” doesn’t appear in my WP widget menu so I don’t know how to delete it.
    -Can I change the color of my widget menus and put it in black?

  • Unknown's avatar

    I am trying ti put this:
    The Imbalance 2 Theme {
    display: none;
    }

    Create a free website or blog at WordPress.com {
    display: none;
    }
    But it doesn’t work, what am I doing wrong?

  • Unknown's avatar

    How can I put each archive’s name of the page in every category, one by one? Ex: Collages (now it is erased, before it was “Archives category: Collages” and I only want Collages)

    Try this instead

    .archive h1.page-title{
    	color: #fff;
    	margin-left: -13.5%
    }
    #content h1 span{
    	color: initial;
    
    }

    How can can I delete on the bottom of the sticky posts “featured”?

    div.posted{
    	display:none;
    }

    That might also stop other tags from being displayed. If that’s the case let me know and we’ll adjust.

    The widget “search” doesn’t appear in my WP widget menu so I don’t know how to delete it.

    We can do that with CSS too.

    .widget_search{
    	display: none;
    }

    Can I change the color of my widget menus and put it in black?

    I put the text in actual black, but the rest of the “black” text on your site isn’t true black, so it might not be what you are looking for.

    .widget-area li a{
    	color: black
    }

    I noticed that the code I gave you earlier isn’t actually saved in your CSS editor. Was that intentional, or were you having trouble with it?

    I am trying ti put this:
    The Imbalance 2 Theme {
    display: none;
    }
    Create a free website or blog at WordPress.com {
    display: none;
    }

    The syntax of that code won’t work, and the terms of service at WordPress.com say that those notices must stay on your site. We can make them match better with the rest of your site though, so if you’d like to change the font color or anything like that let me know and I’ll be happy to help.

  • Unknown's avatar

    Thank you very much for your help everything that you wrote me is ok.
    But I still have an issue with the header, I don’t know how to change the bottom margin, I would like the box to be 150px , I don’t need the blank space.
    I also would like to change the font of the “In balance theme etc” , can you put it in white or in the same blue as the rest of the website.
    I would like to understand why my codes don’t work and where can I find the links for css to understand which object I am talking about. Because I will keep asking you…!
    Thank you for your help

  • Unknown's avatar

    I still have an issue with the header, I don’t know how to change the bottom margin, I would like the box to be 150px , I don’t need the blank space.

    Try this. The header includes some padding, so I think this will do what you are looking for.

    #header{
    	height:100px;
    }

    I also would like to change the font of the “In balance theme etc” , can you put it in white or in the same blue as the rest of the website.

    #site-info a, #site-info{
    	color: #b7dcdc;
    	font-weight: normal;
    }

    I would like to understand why my codes don’t work and where can I find the links for css to understand which object I am talking about.

    In order for your CSS code to work, you have to get the syntax exactly right. This article explains more about how that works, and includes some resources for getting started:
    https://en.support.wordpress.com/custom-design/css-basics/

  • Unknown's avatar

    Ok thank you so much, I am going away for a few days, I will keep going when I come back, have a nice week end!

  • The topic ‘I would like to erase the date on the post’ is closed to new replies.