• Hello!
    I have three problems.
    First, how can I disable the sticky header menu?
    Second, how can I disable paging on home page?

    And last, how can I center the titles of the posts on home page?

    In additional CSS i have this:

    #bd .entry-title span{
    color:#cc0000;
    font-family: ‘Verdana’, ‘Lucida Grande’, ‘Helvetica’, ‘Arial’, ‘Free Sans’, sans-serif;
    font-style: italic;
    font-size: 20px;
    font-weight: normal;
    display: inline;
    }

    but “text-align:center” is not worked :/

    • This topic was modified 4 years, 8 months ago by mateo3235.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi @mateo3235

    First, how can I disable the sticky header menu?

    Customize / Parallax Header Image

    set disable

    save publish

    Second, how can I disable paging on home page?

    Create Child Theme

    functions.php
    add below PHP CODE

    
    <?php
    function raindrops_next_prev_links(){
    	return false;
    }
    ?>
    

    And last, how can I center the titles of the posts on home page?

    
    #bd .entry-title{
    	display:block;
    	text-align:center;
    }
    #bd .entry-title span{
    	color:#cc0000;
    	font-family: ‘Verdana’, ‘Lucida Grande’, ‘Helvetica’, ‘Arial’, ‘Free Sans’, sans-serif;
    	font-style: italic;
    	font-size: 20px;
    	font-weight: normal;
    	display: inline;
    }
    

    Thank you.

    Thread Starter mateo3235

    (@mateo3235)

    It works, thanks! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable the sticky header menu and disable paging’ is closed to new replies.