• Resolved killkidrock

    (@killkidrock)


    Sup novita me again!
    I want to remove says “Category Archives” text in the above of the title page. Thanks

Viewing 12 replies - 1 through 12 (of 12 total)
  • Theme Author nobita

    (@nobita)

    Hi killkidrock

    Please Add to style.css last line.

    When “Category Archives” hide but Category name shown.

    .category-archives li:first-child{
    	visibility:hidden;
    }
    .category-archives li:first-child span{
    	visibility:visible;
    	margin-left:-20%;/* Please config*/
    }

    no shows “Category Archives” and category name.

    .category-archives li:first-child{
    	display:none;
    }

    Thank you.

    Thread Starter killkidrock

    (@killkidrock)

    Thank you again novita ??

    Thread Starter killkidrock

    (@killkidrock)

    I forgot the other one thing to ask, instead of “This entry was posted in” text in under of my every post page, I want is remove that AND PUT random ads or publishers of mine..

    Theme Author nobita

    (@nobita)

    1. Remove posted in

    Add to functions.php first line <?php before

    <?php
    add_filter( 'raindrops_posted_in','__return_false' );
    ?>

    2.PUT random ads or publishers of mine.

    create template

    hook-append-entry-content.php

    and put your ads.

    Thank you

    Thread Starter killkidrock

    (@killkidrock)

    and then?

    Theme Author nobita

    (@nobita)

    not happen?

    Please delete browser cache.

    I added to style.css last line:

    .tags-archives li:first-child{
    	visibility:hidden;
    }
    .tags-archives li:first-child span{
    	visibility:visible;
    	margin-left:-20%;/* Please config*/
    }

    I see, however, “Tag Archives bibliography”

    Now it’s OK.

    The code is:

    .tag-archives li:first-child{
    	visibility:hidden;
    }
    .tag-archives li:first-child span{
    	visibility:visible;
    	margin-left:-20%;/* Please config*/
    }

    Theme Author nobita

    (@nobita)

    Please enjoy raindrops.

    Same issue here, I have no clue why the hack they name a category page “Archive”… cannot imagine any one would like that.

    Anyway..thanks for all comments above… Im gonna give it a try with:

    .tag-archives li:first-child{
    visibility:hidden;
    }
    .tag-archives li:first-child span{
    visibility:visible;
    margin-left:-20%;/* Please config*/
    }

    Above didnt work, but I changed the following in my Theme’s style.css (Omega):

    .archive-title {
      font-size: 20px;
      margin-bottom: -3px;
      visibility: visible;
    }

    Into

    .archive-title {
      font-size: 20px;
      margin-bottom: -3px;
      visibility: hidden;
    }

    Worked straight ahead.

    If you require assistance then, as per the Forum Welcome, please post your own topic.

    This 4 month old resolved topic references an old version of WordPress.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘How to Remove Category Archive Text’ is closed to new replies.