Title: Justin Tucker's Replies - page 2 | 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 - 16 through 30 (of 47 total)

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Words mixed together on page load](https://wordpress.org/support/topic/words-mixed-together-on-page-load/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/words-mixed-together-on-page-load/#post-7045220)
 * Jonathan,
 * It looks like there are may be some scripts blocking the css from styling your
   content, when your site initially loads.
 * Try temporarily removing content from the homepage. I’d start with the google
   maps widget in the footer.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [center aligning the post carousel](https://wordpress.org/support/topic/center-aligning-the-post-carousel/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/center-aligning-the-post-carousel/#post-7040357)
 * Hi iampoppy,
 * Can you provide a link to your site?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Image for Inner Page](https://wordpress.org/support/topic/image-for-inner-page/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/image-for-inner-page/#post-7040356)
 * Hi Hi_M_Patel,
    Can you provide your theme and possibly a url?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Please help – removing line](https://wordpress.org/support/topic/please-help-removing-line/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/please-help-removing-line/#post-7040355)
 * You’ll need to edit some css.
 * Remove the light grey line
 *     ```
       @media screen and (min-width: 768px) {
           .home .right-sidebar .content-area,
           .left-sidebar .content-area {
               padding-top: 0;
               border-top: 0;
           }
       }
       ```
   
 * Remove the black line below the light grey line:
 *     ```
       .home .hentry .entry-header {
           border-bottom: 0;
           margin-bottom: 0;
       }
       ```
   
 * There are plugins available to add css to your site.
 * [https://wordpress.org/support/view/plugin-reviews/simple-custom-css](https://wordpress.org/support/view/plugin-reviews/simple-custom-css)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Sixteen] remove link from header picture](https://wordpress.org/support/topic/remove-link-from-header-picture/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/remove-link-from-header-picture/#post-7027565)
 * You could try the using a plugin that enables inserting javascript. A quick search
   brought shows this plugin:
    [https://wordpress.org/plugins/css-javascript-toolbox/](https://wordpress.org/plugins/css-javascript-toolbox/)
 * Once that’s installed you would insert the javascript code below. The code below
   won’t remove the link, but but should prevent the default link behavior.
 * Be sure to have backups in place. If the plugin you choose is coded poorly, there’s
   a chance you could lose access to your site.
 *     ```
       document.getElementsByClassName('header-image').getElementsByTagName('a').addEventListener('click', function(e){
               e.preventDefault();
       });
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Page opacity](https://wordpress.org/support/topic/page-opacity/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/page-opacity/#post-7026960)
 * You will have to change two css selectors and convert your title logo to a transparent
   png.
 *     ```
       .cadet_blue .wrapper {
           background-color: rgba(255,255,255,.6);
       }
       ```
   
 *     ```
       .cadet_blue .header-bg-section {
           background-color: rgba(255,255,255,.6);
       }
       ```
   
 * `rgba(255,255,255,.6);` is the equivalent to displaying white with 60% opacity.
 * This plugin will give you the ability to add custom css:
    [https://wordpress.org/plugins/simple-custom-css/](https://wordpress.org/plugins/simple-custom-css/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Lens] Header image overlay mesh/grid effect](https://wordpress.org/support/topic/header-image-overlay-meshgrid-effect/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/header-image-overlay-meshgrid-effect/#post-7026918)
 * That should get rid of the mesh. How are you adding the css?
 * This has been recommended by others on here:
    [https://wordpress.org/plugins/simple-custom-css/](https://wordpress.org/plugins/simple-custom-css/)
 * Are you wanting to remove the dark overlay as well? Do you have a link to your
   site?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Lens] Header image overlay mesh/grid effect](https://wordpress.org/support/topic/header-image-overlay-meshgrid-effect/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/header-image-overlay-meshgrid-effect/#post-7026906)
 * Looks like it’s set with css. you can remove it with this:
 *     ```
       #masthead .layer:after {
            background: none;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Page opacity](https://wordpress.org/support/topic/page-opacity/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/page-opacity/#post-7026904)
 * Can you provide a link to your site?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Sixteen] remove link from header picture](https://wordpress.org/support/topic/remove-link-from-header-picture/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/remove-link-from-header-picture/#post-7027326)
 * You would need to make a child theme. Once you have that in place, locate header.
   php in the main theme and copy it into your child theme.
 * [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 * Once that’s done, find the anchor tag in header.php and remove it.
 * `<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">` and `</a>`
 * If you’re using a text editor, the lines you need to remove are 90 and 92.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Altering Search Form](https://wordpress.org/support/topic/altering-search-form/)
 *  [Justin Tucker](https://wordpress.org/support/users/certainstrings/)
 * (@certainstrings)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/altering-search-form/#post-7027316)
 * You can add a filter to your functions.php file that sets parameters before posts
   are requested from the database. However, setting posts to -1 is generally not
   a good idea, especially for search for results. If you have a significant amount
   of posts, you could crash your site. Ideally you should set a high number (500?)
   and paginate from there.
 * You can read more about that here:
    [https://10up.github.io/Engineering-Best-Practices/php/#performance](https://10up.github.io/Engineering-Best-Practices/php/#performance)
 * If you’re using a free or purchased theme, make sure you create a child theme.
 *     ```
       function search_filter($query) {
   
            // make sure we're not on the admin and we are in the main query
            if ( !is_admin() && $query->is_main_query() ) {
                // only set the post parameter if we're searching for posts
                if ($query->is_search) {
                    $query->set('posts_per_page', -1);
                }
            }
       }
   
       add_action('pre_get_posts','search_filter');
       ```
   
 *   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-7022259)
 * As an additional note, it’s best practice to create a child theme and copy that
   file into your child theme. Then make your adjustments there. That way your changes
   aren’t overwritten when the theme gets updated.
 *   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-7017196)
 * Glad you got everything working. Looks like you issue is mark as resolved.
 *   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-7022250)
 * It looks like the “Playfair” font is set on the site-title. You could try going
   one level deeper and select the anchor tag.
 *     ```
       .site-branding .site-title a{
                font-family: "Playfair Display",Georgia;
       }
       ```
   
 *   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-7022249)
 * I see it now. The theme author is using a custom style sheet and displaying it
   by hooking into `wp_head()`
 * In your theme look for the file iexcel-custom-style.php.
 * On line 25 there is a variable `$primary_color`; Change that and you should be
   good to go.

Viewing 15 replies - 16 through 30 (of 47 total)

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