remove the header title from category pages

Posted in: Newspaper
Post count: 555

I like to hide the category title from all over my site can i get a css code please…

Post count: 22421

Hello Steven

As i understand you wan to remove ALL category page titles. If this is the case, this should do the trick:

.td-category-header h1 {display:none!important;}

Thank you

Post count: 555

Thanks but not that part,i want to remove the “header of the category” from each page means i don’t want too see it just the post..

  • This reply was modified 10 years by Steven.
Post count: 555

I like to know as well how to change the color for the prev-next title under each post i want it to be #4274c3 instead of black

Post count: 22421

Hello Steven,

Please be more specific with the first question because we’re all scratching our heads trying to figure out what to do.

For the second part, try this css:

.page-nav-post a{
color: #4274c3
}

Thank you!

Post count: 555

CATEGORY TEMPLATE where you add a header i want mine hide…right now i’m using style 6 but i reather don’t use any of them just remove them all from all my CATEGORY PAGES..hope this help you understand what i mean…

That css code not working my prev-next title not change color..

  • This reply was modified 10 years by Steven.
  • This reply was modified 10 years by Steven.
Post count: 22421

3’d time’s a charm:

.td-category-header{
display:none;
}

Thanks

Post count: 555

Omg it will not go away lol,i use ur code and it still there…

look at what i mean…

https://jahliveradio.com/new-releases/

Post count: 555

I had to go in each category and set it too default for the css code to take effect..now it’s all good thanks..

But the other issue with the prev-next title color not taking a effect…

Post count: 22421

Prev-next button code did not work because you do not have the default pagination :).
This one will:

.td-post-next-prev-content a{
color:#4274c3
}

Thanks.

Post count: 555

very nice,now it take effect thanks a lot Bogdan B.

one more thing some parts of my site still showing white background like for example if i use a “CATEGORY TOP POSTS STYLE” the back ground is white i want it match the rest of my site it also happens with “POST TEMPLATE 4” is there any way i can change that white color…

Post count: 22421

Sorry for the delay, we do not work in weekends.

Try this one out. (it worked for me: http://screencast.com/t/KhtWEODVR)
I set your background color to it:

.td-category-grid {
background-color:#000028!important
}

And for post template 4:

.td-post-template-4 .td-post-title{
background-color: #000028!important;
}

Post count: 555

Thanks for all your help…i have one more issue and it’s the color of some fonts that have a gray and dark color that i need to change to white..

That’s the font color on the 404 page that say”Ooops… Error 404“it’s dark color and no one can see on my dark background..

The color for the the numbers under the category page i want the hover color to be in white and the text is black it’s showing a gray color also the text that saying “page 1 to 11 on the right” need that to be in white also..

Is there a way to change the black and gray color for all the site so i don’t have to ask this question again..

https://jahliveradio.com/?p=9999999 404 page

https://jahliveradio.com/2015-archives/ category page

  • This reply was modified 10 years by Steven.
Post count: 22421

I think this will cover it:

1) 404 page:


.td-404-title{
color:white;
}

2) Category nav:

.page-nav a:hover{
color:black;
background-color:white;
}
.page-nav a{
color:white;
}
.page-nav span{
color:white;
}

If these are not the color you wanted, you can always change the code to your preference.
PS. if something will not work, you can add ‘!important’ at the end of the attribute value before the ‘;’.

Thank you!

Post count: 555

@Bogdan B.Your support is A+,every thing i ask you find a fix..thanks very much for all the help you give to me…

Viewing 15 posts - 1 through 15 (of 15 total)
You must be logged in to reply to this topic.