Forum Replies Created

Viewing 11 replies - 106 through 116 (of 116 total)
  • Hi Rebecca,

    You can increase the width of the header in the CSS file. Look for .container { width: 1170px; } in the file and increase it by .container { width: 1358px; } Also, you need to remove the left and right padding from the class. You will find .container { padding-left: 15px; padding-right: 15px; } change both to 0px .container { padding-left: 0px; padding-right: 0px; }. You may find the .container class in the bootstrap.min.css file.

    NOTE: This will be applied to your site logo and pull right image also. To make your site look proper, add this to the style.css file. Look for .logo class and add .logo { padding-left: 15px; }, .pull-right class and add .pull-right { padding-right: 15px; }.

    I hope this will work for you.

    Hi there,

    The pagination is not working at your site because you have used posts_per_page => -1 in your code. As per the documentation, -1 is used to display all the posts in one page. I would suggest you to change it to something else like posts_per_page => 5. You can mention the number of posts as per your requirement.

    I hope this will work for you.

    Archana Solanki

    (@archanasolanki)

    Hi there,

    To achieve this, you need to hide the site title and tagline, displaying above the header image. You can hide them using CSS. Open style.css file of the theme, you will find it in the root folder.

    Find:
    .site-branding

    and insert display:none within the parenthesis.

    NOTE: this will hide the site title and tagline both from the section above the header image.

    To display the tagline below the header image, insert
    <h2 class="site-description">Just a girl documenting her journey as she creates her Neverland.</h2>
    below the header image link. Don’t know the exact file but probably you will find the code in header.php file of your theme.

    Hope this will help you.

    Have a great day!

    Thanks.

    Archana Solanki

    (@archanasolanki)

    Hi there,

    Yes, you can do it. You can create a custom menu for your website.

    Go to Dashboard (wp-admin of your site) >> Appearance >> Menu >> Create a menu and set it as “Primary Menu”.

    I hope this will work for you.

    Thanks.

    Archana Solanki

    (@archanasolanki)

    I am glad that I could help you.

    Archana Solanki

    (@archanasolanki)

    Hi there,

    You can achieve it by modifying a little code in home-portfolio.php file. you can find this file in the root folder of your theme directory.

    Open the file >> Go to line 18, you will find something like:

    <?php for($i=1 ; $i<=4; $i++) { ?>

    please change it to

    <?php for($i=1 ; $i<=2; $i++) { ?>

    Note: you need to modify CSS related to it. I’m sorry I can’t help with this CSS stuff as I don’t know much of it.

    Hope this will help you a little.

    Thanks.

    Archana Solanki

    (@archanasolanki)

    Hi achanne,

    You are getting this error because you have registered the taxonomy as “recipe-type” where as while retrieving, you are using “recipe-types” inside the get_terms function.

    Kindly change it to “recipe-type” and then check.

    Thanks.

    Archana Solanki

    (@archanasolanki)

    Can you please check:

    Dashboard(wp-admin) of your site >> Settings >> Discussion >> Default article settings >> please check on Allow people to post comments on new articles.

    I hope this will work!

    Archana Solanki

    (@archanasolanki)

    Hello there,

    To achieve this, please go to:

    Dashboard(wp-admin) of your site >> Pages >> Page of your choice >> Click on Edit >> Discussion >> please check on allow comments check box.

    In case if you can’t find Discussion box, kindly open Screen Options (You will find it in the top right corner of the page) and place a tick mark on Discussion.

    Let me know if I am missing something.

    Thanks!

    Have a great time!

    Archana Solanki

    (@archanasolanki)

    Hello there,

    You can achieve this by editing the main css file of your theme.

    Go to example.com >> wp-content >> themes >> yourTheme >> style.css

    Now, look for entry-title class and add text-align: center;

    This will change the title of posts and pages to center.

    Let me know if I am missing something.

    Thanks!

    Thanks a lot Mert Yazicioglu.
    That solved my issue also.

Viewing 11 replies - 106 through 116 (of 116 total)