Title: Andriuss's Replies | WordPress.org

---

# Andriuss

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

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

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Unique Headers] Unique headers not working in child theme](https://wordpress.org/support/topic/unique-headers-not-working-in-child-theme/)
 *  [Andriuss](https://wordpress.org/support/users/andriusas/)
 * (@andriusas)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/unique-headers-not-working-in-child-theme/#post-9375034)
 * I use default WP themes twenty sixteen, seventeen and plugin works fine with 
   child themes without any extra coding.
    Create WP twenty-sixteen child theme 
   on your page and use Unique header plugin. if plugin works fine on twenty-sixteen
   child theme for you, then ask talon theme support for your Q. Else if your plugin
   doesn’t work on default twenty-sixteen, check if you set your child theme good,
   as it works for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Enquiry for WooCommerce] Error When Click Enquiry Button – Styling Issues](https://wordpress.org/support/topic/error-when-click-enquiry-button-styling-issues/)
 *  [Andriuss](https://wordpress.org/support/users/andriusas/)
 * (@andriusas)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/error-when-click-enquiry-button-styling-issues/#post-5231028)
 * 1) On fresh plugin install and activation:
    When Enquiry button click Warning:
   Illegal string offset ‘enable_send_mail_copy’ in <…>/data/contact.php on line
   51. However, 2) If in admin panel “Enable sending an email copy” is checked, 
   form works, but on click Send: Notice: Undefined variable: to_adm in <…>\data\
   contact.php on line 38 Notice: Undefined variable: site_name in <…>\data\contact.
   php on line 43 Notice: Undefined variable: form_data in <…>\data\contact.php 
   on line 51 and again: 3) If in admin panel “Enable sending an email copy” is 
   unchecked, on Enquiry button click Notice: Undefined index: enable_send_mail_copy
   in <…>\data\contact.php on line 51
 * Any solutions to fix it?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Graphene] How to Make the Titles More Bigger and Bolder?](https://wordpress.org/support/topic/how-to-make-the-titles-more-bigger-and-bolder/)
 *  [Andriuss](https://wordpress.org/support/users/andriusas/)
 * (@andriusas)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/how-to-make-the-titles-more-bigger-and-bolder/#post-3569747)
 * Hi once again,
    Edit post-title in your style.css file if there is no options
   for font size in theme setting. Find this line in style.css
 *     ```
       .post-title, .post-title a {
           color: #1772AF;
           font: 24px "Pontano Sans",sans-serif;
           margin-top: -3px;
       }
       ```
   
 * Replace with this
 *     ```
       .post-title, .post-title a {
           color: #1772AF;
           font: bold 48px "Pontano Sans",sans-serif;
           margin-top: -3px;
       /*  or add
           font-weight: bold; */
       }
       ```
   
 * The **Must to have tool** for customizing your website is Firebug for firefox,
   [read in another your post](https://wordpress.org/support/users/andriusas/replies/wordpress.org/support/topic/how-to-remove-the-border-around-images-in-sidebar?output_format=md)
   
   It’s timesaver and easier to learn work with firebug and understand css basics
   than wait for answers for every minor style change from support team.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Graphene] How to Remove the Border Around Images in Sidebar?](https://wordpress.org/support/topic/how-to-remove-the-border-around-images-in-sidebar/)
 *  [Andriuss](https://wordpress.org/support/users/andriusas/)
 * (@andriusas)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-the-border-around-images-in-sidebar/#post-3569738)
 * Install [Firebug extension](https://addons.mozilla.org/en-US/firefox/addon/firebug/)
   for Firefox browser:
    Learn to use it (it’s realy simple), catch the object you’re
   looking for with firebug, find where the css code is for the object, open source
   file – edit it. Hope this will help you. Or post your website link if you need
   specific solution only for img border.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [HERO template – Amendment to "Welcome Container"](https://wordpress.org/support/topic/hero-template-amendment-to-welcome-container/)
 *  [Andriuss](https://wordpress.org/support/users/andriusas/)
 * (@andriusas)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/hero-template-amendment-to-welcome-container/#post-3569320)
 * It’s homepage so,
    check in your theme folder or via WP-admin panel>appearance
   >editor for home.php or index.php or page.php; there should be
 *     ```
       <!--welcome-->
       <div class="welcome_container"><hr />
       <div class="two_third welcome-box">
       <h1>Welcome to the home of Kadia - Bournemouth Acoustic Folk Indie Band</h1></div>
       <div class="one_third last">
       <a class="button large" href="http://www.facebook.com/kadiaband">Like us on Facebook</a>
       </div>
       <hr />
       </div><!--welcome end-->
       ```
   
 * The code might look different in your php file, but the _welcome div_ should 
   be the same. Your FB link is in there – replace `<a>..Facebook.</a>` content 
   with your own code.
    This is my suggestion. (if it’s your parent theme after 
   updatng your theme version, you will overwrite php file and lose your changes
   and should do this again).

Viewing 5 replies - 1 through 5 (of 5 total)