Title: Theme issues
Last modified: April 2, 2021

---

# Theme issues

 *  [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/)
 * Dear all,
 * First of all my congratulations on the Proteo Theme (so far everything is working)
 * I have the following minor issues:
 * 1.[https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-Footer-font-Size.png](https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-Footer-font-Size.png)
   
   2. [https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-1-Social.png](https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-1-Social.png)
   3. [https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-Product-Description.png](https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-Product-Description.png)
   4. [https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-1-Additional-Information.png](https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-1-Additional-Information.png)
   5. [https://www.signaturecd.com/wp-admin/upload.php?item=74451](https://www.signaturecd.com/wp-admin/upload.php?item=74451)
 * Thanks in advance
    Tota
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ftheme-issues-32%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/theme-issues-32/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/theme-issues-32/page/2/?output_format=md)

 *  [Francesco Grasso](https://wordpress.org/support/users/francgrasso/)
 * (@francgrasso)
 * YITH Support Representative
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14281390)
 * Hello there,
    here answers to your questions: 1. Use this CSS snippet
 *     ```
       #main-footer .widget_nav_menu ul li {
           font-size: 14px;
       }
       ```
   
 * 2. At this moment, they can’t be added. We will work to add them in next theme
   update
 * 3. This font size reflex the main body font size and increase it by a small factor.
   But in case you want to have full control on it, you can add this CSS snippet
 *     ```
       .single-product div.product .summary.entry-summary .woocommerce-product-details__short-description p {
       font-size: 16px;
       }
       ```
   
 * 4. The space can be reduced with this snippet
 *     ```
       .single-product .woocommerce-tabs .panel table.shop_attributes td p {
           margin-bottom: 0;
       }
       ```
   
 * The title can be changed with this PHP snippet to add in your child theme functions.
   php file
 *     ```
       add_filter( 'woocommerce_product_additional_information_heading', 'yith_support_change_additional_information_heading' );
       /**
        * @return string Modified value for product's "Additional information" text.
        */
       function yith_support_change_additional_information_heading() {
       	return esc_html__( 'Product information', 'yith-proteo' );
       }
       ```
   
 * 5. can you elaborate bit more?
 * I hope you will appreciate our help 🙂
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14283172)
 * Sorry … for point 5. [https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-Mobile-Products-page.jpg](https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-Mobile-Products-page.jpg)
 * Also, I have another issue:
    6. [https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-1-Mobile-Cart.jpg](https://www.signaturecd.com/wp-content/uploads/2021/04/Screen-1-Mobile-Cart.jpg)
 * Grazie Mille!!
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14283204)
 * The point 4 the coding for change the additional information is not working
 * add_filter( ‘woocommerce_product_additional_information_heading’, ‘yith_support_change_additional_information_heading’);
   /***
   [@return](https://wordpress.org/support/users/return/) string Modified value 
   for product’s “Additional information” text. */ function yith_support_change_additional_information_heading(){
   return esc_html__( ‘Product information’, ‘yith-proteo’ ); }
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14283396)
 * Also for:
 * 2. At this moment, they can’t be added. We will work to add them in the next 
   theme update
 * Can I replace the icons for Twiter and LinkedIn with Tiktok and Pinterest images
   without changing the file name???
 * Tota
 *  [Francesco Grasso](https://wordpress.org/support/users/francgrasso/)
 * (@francgrasso)
 * YITH Support Representative
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14286857)
 * Hi again,
    for n.5:
 *     ```
       @media (max-width: 480px) {
       ul.products li.product, ul.products li.wc-block-grid__product, .wc-block-grid ul.wc-block-grid__products li.product, .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product {
           width: 100%;
           float: none;
           }
       }
       ```
   
 * For n.6:
 *     ```
       body.woocommerce-cart .cart-collaterals .cart_totals table th {
           display: none;
       }
       ```
   
 * For n.4:
    I can see you have an active subscription with YITH, so you can consider
   write to the company a ticket and we will assist you on this and add the code
   for you.
 * For n.2
    Icons are coming from a gpl font bundled with the theme. But with CSS
   they can be modified. If you point me to the images you want to use (with the
   url) I can prepare the code for you 🙂
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14292160)
 * Salve Francesco … Tutto ok
 * For point 4 I will contact them.
 * For point 2 can you please be more specific? (I want to add the TikTok and Pinterest)
   
   you mean these? [https://www.flaticon.com/free-icon/tik-tok_3046125?term=tiktok&page=1&position=5&page=1&position=5&related_id=3046125&origin=search](https://www.flaticon.com/free-icon/tik-tok_3046125?term=tiktok&page=1&position=5&page=1&position=5&related_id=3046125&origin=search)
 * [https://www.flaticon.com/free-icon/pinterest_160178?term=pinterest&page=1&position=9&page=1&position=9&related_id=160178&origin=style](https://www.flaticon.com/free-icon/pinterest_160178?term=pinterest&page=1&position=9&page=1&position=9&related_id=160178&origin=style)
 * Tota
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14296462)
 * Buon giorno Fancesco,
 * I test it on Ipad and I have the following issues:
 * 1. Shop page [https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Shop.jpg](https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Shop.jpg)
   
   2. Cart Page [https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Cart.jpg](https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Cart.jpg)
   3. Home Page [https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Home.jpg](https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Home.jpg)
   4. Model Page [https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Models.jpg](https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Models.jpg)
 * Note that except the point 2 it happens when the iPad it’s in portrait position.
 * Tota
 *  [Francesco Grasso](https://wordpress.org/support/users/francgrasso/)
 * (@francgrasso)
 * YITH Support Representative
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14306118)
 * Hello there,
    1. issue found, this is related to tablet devices only. It will
   be fixed in coming Proteo update! Thanks 2. Please change the code provide for
   n.6 into this:
 *     ```
       @media( min-width: 769px ) {
       body.woocommerce-cart .cart-collaterals .cart_totals table th {
           display: none;
       }
       }
       ```
   
 * 3. this happens because the layout in made in columns. And on iPad a column width
   is 50% of screen size. So 3 columns cause this. If you want, we can force the
   column width to be 100% on iPad screen size. OR you can play with responsive 
   visibility in this way: hide a column to tablet (iPad) view or show an additional
   column to table (iPad) view. I can help you on this with screenshots if you want
   to proceed.
    4. like issue n.1 it will be fixed in the next theme update 🙂
 * Please let me know if you need further help expecially for n.3
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14307945)
 * Thanks,
 * please reply to me also on the below issue: (social icons)
 *     ```
       For point 2 can you please be more specific? (I want to add the TikTok and Pinterest)
       you mean these?
       https://www.flaticon.com/free-icon/tik-tok_3046125?term=tiktok&page=1&position=5&page=1&position=5&related_id=3046125&origin=search
   
       https://www.flaticon.com/free-icon/pinterest_160178?term=pinterest&page=1&position=9&page=1&position=9&related_id=160178&origin=style
       ```
   
 * Tota
 *  [Francesco Grasso](https://wordpress.org/support/users/francgrasso/)
 * (@francgrasso)
 * YITH Support Representative
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14312355)
 * Hello again,
    can you upload the two social images to your website and provide
   me the media url? Then you can configure the socials (with the wrong icon) and
   I will provide you the CSS to change the icon with the proper ones
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14313017)
 * Salve Francesco,
 * Here are the images
    [https://www.signaturecd.com/wp-content/uploads/2021/04/tik-tok.png](https://www.signaturecd.com/wp-content/uploads/2021/04/tik-tok.png)
   [https://www.signaturecd.com/wp-content/uploads/2021/04/pinterest-1.png](https://www.signaturecd.com/wp-content/uploads/2021/04/pinterest-1.png)
 * Also on your last message you told me:
    2. Please change the code provide for
   n.6 into this:
 * [@media](https://wordpress.org/support/users/media/)( min-width: 769px ) {
    body.
   woocommerce-cart .cart-collaterals .cart_totals table th { display: none; } }`
 * WITH
 *     ```
       For n.6:
   
       body.woocommerce-cart .cart-collaterals .cart_totals table th {
           display: none;
       }
       ```
   
 * I did it but it’s not working … I mobile I see the double descriptions and on
   Ipad still missing the descriptions.
 * Please advise
 *  [Francesco Grasso](https://wordpress.org/support/users/francgrasso/)
 * (@francgrasso)
 * YITH Support Representative
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14316983)
 * Hi there,
    here the code to transform twitter into tiktok and linkedin into pinterest:
 *     ```
       .widget_yith_proteo_social_icons a.twitter span:before {
           content: '';
           background: url('https://www.signaturecd.com/wp-content/uploads/2021/04/tik-tok.png');
           background-size: contain;
           background-repeat: no-repeat;
           width: 32px;
           height: 32px;
           display: inline-block;
       }
   
       .widget_yith_proteo_social_icons a.linkedin span:before {
           content: '';
           background: url('https://www.signaturecd.com/wp-content/uploads/2021/04/pinterest-1.png');
           background-size: contain;
           background-repeat: no-repeat;
           width: 32px;
           height: 32px;
           display: inline-block;
       }
       ```
   
 * About the responsive url, please try 992px or if the issue is style there 1200px.
   It should work. Unfortunatly it depends on the type of iPad too, because Pro 
   are larger then standard iPads
 * Let me know
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14317505)
 * Thanks for the social Icons … one more issue on rollover it shows the old names(
   ex on tiktok it say twitter and on Pinterest linkedin
 * Thanks
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14318091)
 * Hi again,
 * I find more issues:
 * 1. Account Login [https://www.signaturecd.com/wp-content/uploads/2021/04/Home-Page.png](https://www.signaturecd.com/wp-content/uploads/2021/04/Home-Page.png)(
   when I login from checkout it’s ok)
    2. Home Page – Sliders [https://www.signaturecd.com/wp-content/uploads/2021/04/Home-Page.png](https://www.signaturecd.com/wp-content/uploads/2021/04/Home-Page.png)(
   when I refresh a few times the slides or move down) 3. Cart Page [https://www.signaturecd.com/wp-content/uploads/2021/04/Cart-Page.png](https://www.signaturecd.com/wp-content/uploads/2021/04/Cart-Page.png)(
   we fix this for mobile but problem with desktop)
 * Tota
 *  Thread Starter [tota040963](https://wordpress.org/support/users/tota040963/)
 * (@tota040963)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/#post-14318170)
 * Sorry …
 * From where is can set the “About the responsive url, please try 992px or if the
   issue is style there 1200px. It should work”
 * Tota

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/theme-issues-32/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/theme-issues-32/page/2/?output_format=md)

The topic ‘Theme issues’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/yith-proteo/1.9.8/screenshot.png)
 * YITH Proteo
 * [Support Threads](https://wordpress.org/support/theme/yith-proteo/)
 * [Active Topics](https://wordpress.org/support/theme/yith-proteo/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/yith-proteo/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/yith-proteo/reviews/)

 * 16 replies
 * 2 participants
 * Last reply from: [Francesco Grasso](https://wordpress.org/support/users/francgrasso/)
 * Last activity: [5 years, 3 months ago](https://wordpress.org/support/topic/theme-issues-32/page/2/#post-14332664)
 * Status: not resolved