• Resolved Kim

    (@kimqing)


    Please help
    1. remove category page titles and all page titles.
    2. remove post top margin on the page
    3. align center of post title and post body content in post view and category view

    thank you.

    The page I need help with: [log in to see the link]

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

    (@nobita)

    Please add
    Customize / Addtional CSS

    
    .category-archives .entry-title, /*remove each page title */
    .category-archives .title-wrapper, /* remove category title */
    .category-archives .rd-term-description,/* remove category desctiption */
    .category-archives .list-category-navigation{ /* remove category navigation */
    	display:none;
    }
    

    align center of post title and post body content in post view and category view

    
    .entry-title > a > span{
        display:block;
        text-align:center;
    }
    

    Thank you.

    • This reply was modified 8 years, 6 months ago by nobita.
    Thread Starter Kim

    (@kimqing)

    thank you so much nobita!!!!!!!

    all category title and post top margin has been removed like magic!!!

    1. I noticed post title also has been removed too, can you please change it back, I need post title showing! please help make post title align to center, same as post body, thank you!

    2. post text can not change size, can you please give option to change font size? thank you.

    Theme Author nobita

    (@nobita)

    Please change adding styles.

    
    .category-archives .title-wrapper, /* remove category title */
    .category-archives .rd-term-description,/* remove category desctiption */
    .category-archives .list-category-navigation{ /* remove category navigation */
    	display:none;
    }
    .entry-title > a > span{
        display:block;
        text-align:center;
    }
    

    means, remove below style style rule

    
    .category-archives .entry-title, /*remove each page title */
    
    

    2. post text can not change size, can you please give option to change font size? thank you.

    Customize / Presentation / Fonts

    Set Base Font Size

    The font size of the entire site is changed.

    If you feel that the character size of the site title or posted title is too large, adjust as follows

    Change font size Site Title

    Customize / Site Identity

    CSS Class of Site Title

    input f24

    f24 class means 24px ( you can use f10-f40 )

    Change font size Entry Title

    Customize / Presentation / Post

    Entry Title CSS Class

    input f24

    save publish.

    Thank you

    • This reply was modified 8 years, 6 months ago by nobita.
    Thread Starter Kim

    (@kimqing)

    thank you soooo muchhhhh nobita!!!! I have post title back and center now with your help!!!

    I am not sure if you can help me fix slideshow in post being centered? (it always align left no matter I choose center alignment or not), or do I need to wait for that photo gallery plugin tech support to help? can you please take a look at the link below and let me know please nobita? thank you so much!!!

    http://www.kimqing.com/category/allcatlog/blog/

    Thread Starter Kim

    (@kimqing)

    also, can you please help:

    1. center align footer text

    2. change page font size smaller to fit screen, for example, page title of this page
    http://www.kimqing.com/

    thank you!

    Thread Starter Kim

    (@kimqing)

    hi notbita,

    3. post title centered only works on category page:
    http://www.kimqing.com/category/allcatlog/blog/

    4. post title still left aligned on single post page:
    http://www.kimqing.com/portobello-mushroom-pizza/

    can you please help make category page post tile also centered?
    thank you!!!

    further to my previous reply question 2:
    I guess page title font size changes whenever I change base font size, correct? and you only give us option to change base font size, so page title doesn’t fit page now after I increased base font size. pls help make page title font size smaller, thank you.

    5. can I set base font be bold to default? thank you.

    Theme Author nobita

    (@nobita)

    1. center align footer text

    Please wrapped it with an address element

    
    <address>© Copyrights 2017 www.kimqing.com All Rights Reserved</address>
    

    2. change page font size smaller to fit screen

    The title may be long or short. Adjustment should be done for each individual post

    When you open the edit post screen of the post, the Custom CSS for this entry meta box is displayed.

    There are two major ways to relate the font size with the browser width.

    Use vw as unit of font size
    example.

    Add Custom CSS for this entry.

    
    .entry-title{
         font-size:2vw;
    }
    

    2vw is 2% of browser width
    Use Media Query

    
    @media screen and (max-width : 800px){
        .entry-title{
         font-size:20px;
        }
    }
    

    Specify font size when browser width is less than 800px

    You can use these methods singly or in combination.

    4. post title still left aligned on single post page:

    Adding Customize / Additional CSS

    
    .entry-title{
    text-align:center;
    }
    

    Thank you.

    Note.
    Please make one post for each question

    • This reply was modified 8 years, 5 months ago by nobita.
    Thread Starter Kim

    (@kimqing)

    thank you so much for help nobita!!!

    I will post one question per post in the future, sorry this is my first time posting here and I am new to wordpress and everything online.

    Thread Starter Kim

    (@kimqing)

    category path shows up again now after update version and css, please help!!!

    http://www.kimqing.com/translation/

    Theme Author nobita

    (@nobita)

    Thread Starter Kim

    (@kimqing)

    I didn’t see any reply from you on that link either? please help, thank you!

    Theme Author nobita

    (@nobita)

    Is the URL you are presenting as a category archive?

    http://www.kimqing.com/translation/

    Are you questioning about this display?

    KIMQING >> POSTS >> ALLCATLOG >> BLOG BLOG Q >> translation!!!

    Check your Customze / Add-ons
    Breadcrumbs

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘HOW TO REMOVE CATEGORY PAGE TITLE?’ is closed to new replies.