badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Code to delete the word category

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #86083
    Sheik Ahamath
    Participant

    Please provide CSS codes to make the following changes

    1) I want to remove the word Category from posts page. e.g. If I click on the posts page with articles on football I find at the top of the page – CATEGORY: FOOTBALL

    2) I want to remove the author from all posts so it doesn’t show anywhere, either on front page, post page and single post pages

    3) I want to remove the automatic navigation of headlines that appear at bottom of each posts

    4) I want to increase the font size of the Site title. The font size now is set at a max 44 pix

    5) I want to use upper and Upper and lower case letters for widget titles. Now it shows all caps.

    Thank you.

    #86116

    Hi Sheik Ahamath,

    1- If you have Updated the Theme to a Newer Version (currently its VER- 1.1.4) then you control the Archive title label from “Appearance > Customize > Mags Pro Settings”, then you can check on to ‘Hide the Archive Title Label’. If you haven’t updated then you can find the Latest update File on Login Page under Downloads.

    2- To remove the Author then please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    .entry-meta .author a {
    	display: none
    }
    .entry-meta > .date:after {
    	content: "";
    }

    3- To remove the Post Navigation then add the below Custom CSS code to the same ‘Additional CSS’ field mentioned before.

    .navigation.post-navigation {
    	display: none;
    }

    4- To increase the Font size of Site Title then add the below Custom CSS code to the same ‘Additional CSS’ field mentioned before.

    @media (min-width: 576px) {
    	.site-title {
    		font-size: 50px;
    	}
    }

    You can change the value of font size as you desired.

    5- To make the Widget Title to normal then add the below Custom CSS code to the same ‘Additional CSS’ field mentioned before.
    .page-template-front-page-template .site-main .widget-title,

    .featured-stories .stories-title {
    	text-transform: inherit;
    	letter-spacing: 0;
    }

    Thanks

    #86151
    Sheik Ahamath
    Participant

    Thanks so much. It works!

    #86178

    Welcome anytime @sheik-ahamath

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