Archana Solanki
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Industry – Full width headerHi 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.
Forum: Themes and Templates
In reply to: Pagination not workingHi 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 likeposts_per_page => 5
. You can mention the number of posts as per your requirement.I hope this will work for you.
Forum: Themes and Templates
In reply to: Hiding Site Title While Still Keeping TaglineHi 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.
Forum: Themes and Templates
In reply to: [Hitchcock] Split up portfolio and photographyHi 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.
Forum: Fixing WordPress
In reply to: Invalid Taxonomy ErrorI am glad that I could help you.
Forum: Themes and Templates
In reply to: [Enigma] number of portfolio itemsHi 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.
Forum: Fixing WordPress
In reply to: Invalid Taxonomy ErrorHi 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.
Forum: Fixing WordPress
In reply to: Activate comments in pagesCan 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!
Forum: Fixing WordPress
In reply to: Activate comments in pagesHello 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!
Forum: Themes and Templates
In reply to: [Fashionistas] TittleHello 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!
Forum: Developing with WordPress
In reply to: please help about post_categoryThanks a lot Mert Yazicioglu.
That solved my issue also.