Title: Justin Tucker's Replies - page 3 | WordPress.org

---

# Justin Tucker

  [  ](https://wordpress.org/support/users/certainstrings/)

 *   [Profile](https://wordpress.org/support/users/certainstrings/)
 *   [Topics Started](https://wordpress.org/support/users/certainstrings/topics/)
 *   [Replies Created](https://wordpress.org/support/users/certainstrings/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/certainstrings/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/certainstrings/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/certainstrings/engagements/)
 *   [Favorites](https://wordpress.org/support/users/certainstrings/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 31 through 45 (of 47 total)

[←](https://wordpress.org/support/users/certainstrings/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/certainstrings/replies/?output_format=md)
[2](https://wordpress.org/support/users/certainstrings/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/certainstrings/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/certainstrings/replies/page/4/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[i-excel] Change color of colorbar (below menu item)](https://wordpress.org/support/topic/change-color-of-colorbar-below-menu-item/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/change-color-of-colorbar-below-menu-item/#post-7022222)
 * If you want to be super verbose you can apply the entire selector.
 *     ```
       button, input[type="submit"],
       input[type="button"],
       input[type="reset"],
       .nav-container .current_page_item > a > span,
       .nav-container .current_page_ancestor > a > span,
       .nav-container .current-menu-item > a span,
       .nav-container .current-menu-ancestor > a > span,
       .nav-container li a:hover span {
               background-color: #1a91b3;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Seasonal] Site Title Font](https://wordpress.org/support/topic/site-title-font-2/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/site-title-font-2/#post-7022217)
 * That looks to be the correct selector. You could try adding more specificity 
   to it.
 *     ```
       .site-branding .site-title {
                font-family: "Playfair Display",Georgia;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Seasonal] Site Title Font](https://wordpress.org/support/topic/site-title-font-2/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/site-title-font-2/#post-7022207)
 * Can you post a link to your site for reference?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[i-excel] Change color of colorbar (below menu item)](https://wordpress.org/support/topic/change-color-of-colorbar-below-menu-item/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/change-color-of-colorbar-below-menu-item/#post-7022206)
 * It looks like there are two css selectors effecting that element.
 *     ```
       .nav-container .current_page_item > a > span,
       .nav-container .current-menu-item > a span {
            background-color: #1a91b3; // change this to your liking
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Accesspress Basic] How to move some menu items to the right side?](https://wordpress.org/support/topic/how-to-move-some-menu-items-to-the-right-side/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-move-some-menu-items-to-the-right-side/#post-6852032)
 * Are you familiar with the Chrome inspector? You can right click on any element
   in your site and choose inspect to get more information about that element. If
   you’re not using Chrome, most modern browsers have this built in.
 * You may see something like this:
 *     ```
       <nav id="site-navigation" class="main-navigation" role="navigation">
          <div id="primary-menu" class="menu sf-js-enabled sf-arrows" style="touch-action: pan-y;">
               <ul aria-expanded="false" class="nav-menu">
                   <li class="page_item page-item-2"><a href="https://wp-themes.com/?page_id=2">About</a></li>
                   <li class="page_item page-item-46 page_item_has_children"><a href="https://wp-themes.com/?page_id=46" class="sf-with-ul">Parent Page</a></li>
                </ul>
           </div>
       </nav>
       ```
   
 * This is from the theme demo. See how your .nav-menu is surrounded with `div#primary-
   menu` and `nav#site-navigation`? That’s where you would need to add extra width.
 *     ```
       #site-navigation,
          #primary-menu{
           width:100%; // maybe smaller depending on your site
       }
       ```
   
 * Keep in mind this will most likely effect any responsive code. So you could wrap
   it in a media query.
 *     ```
       @media (min-width: 900px) {
             #site-navigation,
             #primary-menu{
                 width:100%; // maybe smaller depending on your site
             }
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [footer link remove](https://wordpress.org/support/topic/footer-link-remove/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/footer-link-remove/#post-7021281)
 * Good point, NeoTechnomad. Excellent answer.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Where to place css when adding child theme](https://wordpress.org/support/topic/where-to-place-css-when-adding-child-theme/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/where-to-place-css-when-adding-child-theme/#post-7017184)
 * Can you mark your question question as resolved? Thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to make post box transparent](https://wordpress.org/support/topic/how-to-make-post-box-transparent/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-make-post-box-transparent/#post-7017160)
 * You can set the background color of the box with an opacity using rgba;
 *     ```
       article.post {
           background-color: rgba(200, 54, 54, 0.7);
       }
       ```
   
 * You can get rgb values from a tool like Photoshop or an online convertor like
   this one [http://hex2rgba.devoth.com/](http://hex2rgba.devoth.com/)
 * This works in all current browsers. Internet explorer 8 will show a solid color.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [footer link remove](https://wordpress.org/support/topic/footer-link-remove/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/footer-link-remove/#post-7021230)
 * Look inside your theme and locate footer.php. Search for ‘Catch Themes’ and delete
   it.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Accesspress Basic] How to move some menu items to the right side?](https://wordpress.org/support/topic/how-to-move-some-menu-items-to-the-right-side/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-move-some-menu-items-to-the-right-side/#post-6852030)
 * Your image didn’t come through, but you could try adding a class to each of menu
   items that you want to move. If you don’t see the class field,this post shows
   you how to enable the field.
 * [http://sevenspark.com/how-to/how-to-add-a-custom-class-to-a-wordpress-menu-item](http://sevenspark.com/how-to/how-to-add-a-custom-class-to-a-wordpress-menu-item)
 * From there you can add css selectors that target the classes you added and float
   them to the right.
 *     ```
       .menu li.myClass {
           float: right;
       }
       ```
   
 * Your menu might be in a container, so you will have to expand the width of that
   as well.
 *     ```
       .container {
           width:100%; // maybe smaller depending on your site
       }
       ```
   
 * It’s hard to say without seeing your design, but that should get you started.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Where to place css when adding child theme](https://wordpress.org/support/topic/where-to-place-css-when-adding-child-theme/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/where-to-place-css-when-adding-child-theme/#post-7017136)
 * It sounds like you’re good to go. Like I said before, just make sure you have
   backups in place.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Where to place css when adding child theme](https://wordpress.org/support/topic/where-to-place-css-when-adding-child-theme/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/where-to-place-css-when-adding-child-theme/#post-7017108)
 * Using the css plugin may be part of the issue. In your accesspress-ray theme,
   create a style.css file if you haven’t already.
 * Then place your css header in style.css:
 *     ```
       /*
       Theme Name: AccessPress Ray
       Theme URI: http://joyfulgiftsbyjulie.biz/accesspress-ray-child/
       Description: AccessPress Ray Theme
       Author: Julie Tucker
       Author URI: http://julietucker.com
       Template: AccessPress Ray
       Version: 1.0.0
       */
       ```
   
 * Your original enqueue code should work, but I’m guessing it can’t enqueue the
   parent theme’s styles because it can’t use the css header as reference. Hard 
   to say without seeing your setup.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Posts Instead of Pages](https://wordpress.org/support/topic/posts-instead-of-pages-1/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/posts-instead-of-pages-1/#post-7017019)
 * WordPress comes with a recent posts widget located under the Appearance > WIdgets
   menu in the admin.
 * If you want a widget with more control, there are plenty out there, this one 
   for example:
    [https://wordpress.org/plugins/better-recent-posts-widget/](https://wordpress.org/plugins/better-recent-posts-widget/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Where to place css when adding child theme](https://wordpress.org/support/topic/where-to-place-css-when-adding-child-theme/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/where-to-place-css-when-adding-child-theme/#post-7017018)
 * It looks like you’re on the right track.
 * 1) Usually the style header will go directly in the style.css file within your
   child theme. I’m not 100% sure of the effects of saving it in the editor like
   so.
 * 2) You don’t necessarily need the author URI, it’s there to provide a link to
   your other work. Theme Name is the only requirement in that header.
 * 3) You’ll want to enqueue the parent stylesheet in the functions.php file located
   in the child theme folder.
 * As always, make sure you have backups.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to duplicate and rename the Posts page](https://wordpress.org/support/topic/how-to-duplicate-and-rename-the-posts-page/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-duplicate-and-rename-the-posts-page/#post-7011973)
 * It looks like you’ve already got your custom post type working in the admin. 
   To display content on the front end, copy your index.php and rename it to archive-{
   post_type}.php. That will display a list of posts and single-{post_type}.php 
   will display a single post.
 * So, if you’re custom post type is team, your files will be named archive-team.
   php and single-team.php. Depending on how you have your permalinks setup, you
   can visit yoursite.com/team to see content.
 * Don’t forget to resave your permalinks.
 * Read more here:
    [http://codex.wordpress.org/Post_Types#Custom_Post_Type_Templates](http://codex.wordpress.org/Post_Types#Custom_Post_Type_Templates)

Viewing 15 replies - 31 through 45 (of 47 total)

[←](https://wordpress.org/support/users/certainstrings/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/certainstrings/replies/?output_format=md)
[2](https://wordpress.org/support/users/certainstrings/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/certainstrings/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/certainstrings/replies/page/4/?output_format=md)