Title: Madalin_JFT's Replies | WordPress.org

---

# Madalin_JFT

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[WPBoot] Adding support for child theme at functions.php, WPBoot 1.3](https://wordpress.org/support/topic/adding-support-for-child-theme-at-functionsphp-wpboot-13/)
 *  Theme Author [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/adding-support-for-child-theme-at-functionsphp-wpboot-13/#post-5798859)
 * Hi,
 * Thank you for you suggestion. I will add it in the next version.
 * Best regards,
 * Madalin
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[WP Castle] Header Ad being filtered?](https://wordpress.org/support/topic/header-ad-being-filtered/)
 *  Theme Author [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/header-ad-being-filtered/#post-5360650)
 * Hi Schulz,
 * Just updated the theme, it now supports Adsense or other JS scripts in the header
   Ad field.
 * thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Casper] Removing hover from site title](https://wordpress.org/support/topic/removing-hover-from-site-title/)
 *  [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/removing-hover-from-site-title/#post-5424677)
 * Hi,
 * you are right there, but you forget a dot there!
    so, your code will be like,
 *     ```
       .blog-title a:hover {
           color: #353535;
       }
       ```
   
 * Thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Elmax] To make author name clickable](https://wordpress.org/support/topic/to-make-author-name-clickable/)
 *  Theme Author [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/to-make-author-name-clickable/#post-4805249)
 * Hi, you need to edit a theme file for that.
 * Go to your Dashboard -> Appearance -> Editor. and open the **meta.php** file.
 * then find the following code:
 *     ```
       <?php the_author();?>
       ```
   
 * change it to:
 *     ```
       <?php the_author_posts_link(); ?>
       ```
   
 * save it, it will be okay now.
 * please feel free to ask if you have any other queries.
 * thanks.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Elmax] Italics is not working!](https://wordpress.org/support/topic/italics-is-not-working/)
 *  Theme Author [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/italics-is-not-working/#post-4802733)
 * Hi,
 * try adding an !important tag at the last, so the code will be,
 *     ```
       dfn, cite, em, i {
       	font-style: italic;
       	font-family: Arial, Helvetica, sans-serif !important;
       }
       ```
   
 * let me know how is it.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Elmax] Italics is not working!](https://wordpress.org/support/topic/italics-is-not-working/)
 *  Theme Author [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/italics-is-not-working/#post-4802681)
 * Hi there,
 * seems like that font doesn’t have italics support, you need to add a small piece
   of code in the style.css to make it work.
 * find the following codes in the **style.css**
 *     ```
       dfn, cite, em, i {
       	font-style: italic;
       }
       ```
   
 * and change it to :
 *     ```
       dfn, cite, em, i {
       	font-style: italic;
       	font-family: Arial, Helvetica, sans-serif;
       }
       ```
   
 * it will be all okay now.
 * i will soon release an update of this theme fixing all these small bugs.
 * thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Elmax] Images are bit too big](https://wordpress.org/support/topic/images-are-bit-too-big/)
 *  Theme Author [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/images-are-bit-too-big/#post-4787532)
 * Hi,
 * if you want to show your image without getting cropped, then change following
   codes,
 * `add_image_size( 'big-thumb', 680, 300, true );`
 * to
 * `add_image_size( 'big-thumb', 680, 300);`
 * as i said earlier, change the 680 & 300 to the dimension you want there.
 * then, use a plugin like [Regenerate Thumbnails](http://wordpress.org/plugins/regenerate-thumbnails/)
   to change your current thumbnail’s dimensions.
 * hope that helps, feel free to ask if you still have queries.
 * thanks!
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [support ticket notification for theme authors](https://wordpress.org/support/topic/support-ticket-notification-for-theme-authors/)
 *  Thread Starter [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/support-ticket-notification-for-theme-authors/#post-4791484)
 * yeah, i saw that option, but i would love to get it via email (like how we get
   emails when we opted to get notify for our support queries).
 * btw, do you know any simple way/tool to get feed updates via email?
 * thanks for your time.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Elmax] Images are bit too big](https://wordpress.org/support/topic/images-are-bit-too-big/)
 *  Theme Author [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/images-are-bit-too-big/#post-4787512)
 * Hi, sorry for the delay.
 * about your question, the default size for thumbnails is 680px wide and 300px 
   height. so,if your image is lower in size than that, you need to edit **functions.
   php** file.
 * find the following codes there:
 *     ```
       add_image_size( 'big-thumb', 680, 300, true );
       ```
   
 * change the numbers there, were 680 is width and 380 is height.
 * let me know if you need any more help there.
 * thanks.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Elmax] Social Media Icons](https://wordpress.org/support/topic/social-media-icons-23/)
 *  Theme Author [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/social-media-icons-23/#post-4779611)
 * Hi,
 * I don’t know what you were asking really, this theme doesen’t have any built-
   in social media icons.
 * btw, there are plenty of free plugins for social media icons, just search in 
   the Plugin page from your Dashboard.
 * Hope that helps!
 * Closing this topic now, please feel free to ask if you have any more queries.
 * Thanks.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Elmax] love it!](https://wordpress.org/support/topic/love-it-449/)
 *  Theme Author [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/love-it-449/#post-7841343)
 * Glad that you liked it, and thanks for rating it.
 * happy blogging!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Upload new theme](https://wordpress.org/support/topic/upload-new-theme-4/)
 *  [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/upload-new-theme-4/#post-4627563)
 * Frank,
 * This might help – [http://wordpress.org/support/topic/unpacking-the-package-stuck-1](http://wordpress.org/support/topic/unpacking-the-package-stuck-1)
 * Thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Undiscovered] Customize link's color bypassing default option](https://wordpress.org/support/topic/customize-links-color-bypassing-default-option/)
 *  [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/customize-links-color-bypassing-default-option/#post-4597016)
 * Hi,
 * try adding **!important** in the code, so your codes will become,
 *     ```
       a:link {color: blue !important;}  /* color link */
       a:visited {color: purple !important;}  /* visited link */
       a:hover {color: red !important;}  /* mouse over link */
       a:active {color: green !important;} /* selected link */
       ```
   
 * hope that helps!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Responsive] Pages error](https://wordpress.org/support/topic/pages-error-4/)
 *  [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/pages-error-4/#post-4625009)
 * Did you check it ([http://www.monsieur-velo.be/contact](http://www.monsieur-velo.be/contact))
   after deactivating ALL plugins?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Origami] Remove footer for pages](https://wordpress.org/support/topic/remove-footer-for-pages/)
 *  [Madalin_JFT](https://wordpress.org/support/users/wpbox/)
 * (@wpbox)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/remove-footer-for-pages/#post-4624985)
 * Hi,
 * use a conditional tag – [http://codex.wordpress.org/Conditional_Tags](http://codex.wordpress.org/Conditional_Tags)
 * go to your **footer.php**, and wrap the things you want to exclude from Pages
   with below code.
 *     ```
       <?php if ( ! is_page() ) {?>
   
       things you want to exclude...
   
       <?php }?>
       ```
   
 * hope that helps!

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

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