Title: Some Coding Problems
Last modified: August 22, 2016

---

# Some Coding Problems

 *  Resolved [wccesq](https://wordpress.org/support/users/wccesq/)
 * (@wccesq)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/)
 * Hi, Nobita,
 * Most recently, I have encountered an unusual problem, i.e., coding issues.
    For
   example, the Theme will not respond to Bold < strong > or Italic < < em >. However,
   the Theme xan respond to < b > for Bold and < i > for Italic.
 * Nevertheless, the Mobile theme is able to respond to both Codes.
 * Please advise how I can fix these problems, because WP default codes are < strong
   > and < em >, not < b > or < i >.
 * Thanks,
 * Ken

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

 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5406984)
 * Hi wccesq
 * for example
 * child theme / style.css
 *     ```
       b{
           fornt-weight:bold;
           color:red;
       }
       i{
           font-style: italic; /* or oblique */
           color:red;
       }
       ```
   
 * child theme / editor-style.css ( copy from raindrops )
 *     ```
       html .mceContentBody b{
           fornt-weight:bold;
           color:red;
       }
       html .mceContentBody i{
           font-style: italic; /* or oblique */
           color:red;
       }
       ```
   
 * Because it is deprecated elements, but did not have to worry too much, if you
   use
 * I will add b,i style nextversions Raindrops(1.248)　（ without red )
 * Thank you.
 *  Thread Starter [wccesq](https://wordpress.org/support/users/wccesq/)
 * (@wccesq)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5406993)
 * Hi, Nobita, thanks for your prompt attention.
 * Just double-check one thing. fornt-weight: bold or font-weight:bold.
 * Thanks,
 * Ken
 *  Thread Starter [wccesq](https://wordpress.org/support/users/wccesq/)
 * (@wccesq)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5407018)
 * Hi, Nobita,
 * One more clarification.
 * At present, the Theme will NOT respond to < strong > for Bold, or < em > for 
   Italic.
 * However, the Theme WILL respond to < b > for Bold, and < i > for italic.
 * I want to make my Child Theme to resspond to < strong > and < em >, because WP’s
   default for Bold is < strong > and for Italic is < em >.
 * I am a bit confused by your suggestion. Hope this clarify my request. Thanks,
 * Ken
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5407038)
 * Please see below
 * [https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5/HTML5_element_list](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5/HTML5_element_list)
 * I think by using the CSS class, that it might be of good use while to clarify
   the meaning of the elements
 *  Thread Starter [wccesq](https://wordpress.org/support/users/wccesq/)
 * (@wccesq)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5407040)
 * Hi, Nobita,
 * I just found out that my website had changed to a compltetely different one without
   my Logo, nor the header images, moving to the left side–everything changed.
 * I delted the Theme so that I can reinstall to fix it. But, I cannot re-install
   the Theme.
 * Please help. Thanks,
 * Ken
 *  Thread Starter [wccesq](https://wordpress.org/support/users/wccesq/)
 * (@wccesq)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5407150)
 * Hi, Nobita,
 * Finally I was able to delete the orignal Parent Theme COMPLETELY, and reintsall
   the Parent. Now back to normal.
 * The only possibility was that when updating the most recnt one, the Style.css
   code did not come through. But, most co-incidentally, both updates for my websites
   had identical problems.
 * One last request for now: When you update the Theme, please duble heck the < 
   Strong > and < em > features to make sure they work properly, because they don
   not work for me, and I will recode them with < b > and < i > for now.
 * Many thanksssssssssssssssssss for all the support and help,
 * Ken
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5407155)
 * > The only possibility was that when updating the most recnt one, the Style.css
   > code did not come through. But, most co-incidentally, both updates for my websites
   > had identical problems.
 * Thanks for patience
 * In an attempt to confirm the update problems, I, has been tested 10 times updates,
   but all were able to update without any problems.
 * Other users also, because it pointed out the same problem, I can understand it
   is a problem that definitely occurred, but there were no measures that can I 
   at present
 * Sorry
 * > One last request for now: When you update the Theme, please duble heck the 
   > < Strong > and < em > features to make sure they work properly, because they
   > don not work for me, and I will recode them with < b > and < i > for now.
 *  element strong, em can not be applied style　?　I will check it.
 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5407159)
 * strong , em style is Raindrops Bug
 * Next versions strong,em,b,i style below.
 * style.css line:178
 *     ```
       strong,
       b{
          font-weight:bold;
          border-bottom:none;
          text-decoration:none;
       }
       em,
       i{
          font-style: italic;
       }
       ```
   
 * editor-style.css add style
 *     ```
       html .mceContentBody strong,
       html .mceContentBody b{
          font-weight:bold;
          border-bottom:none;
          text-decoration:none;
       }
       html .mceContentBody em,
       html .mceContentBody i{
          font-style: italic;
       }
       ```
   
 * ja.css line:129 add style
    ( Only japanese lang style )
 *     ```
       .ja em{
              font-weight:bold;
       }
       .ja i{
              font-style: italic;
       }
       ```
   
 * css3.css line-9 remove style and change normal bold
 * remove below.
 *     ```
       strong{
         /* text-shadow: rgba(0, 0, 0, 0.2) 0 1px 0;*/
       }
       ```
   
 * It will be fixed next version.
 * Thank you for pointing out.
 *  Thread Starter [wccesq](https://wordpress.org/support/users/wccesq/)
 * (@wccesq)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5407226)
 * Thanks, Nobita,
 * Ken

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

The topic ‘Some Coding Problems’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/raindrops/1.700/screenshot.png)
 * raindrops
 * [Support Threads](https://wordpress.org/support/theme/raindrops/)
 * [Active Topics](https://wordpress.org/support/theme/raindrops/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/raindrops/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/raindrops/reviews/)

 * 9 replies
 * 2 participants
 * Last reply from: [wccesq](https://wordpress.org/support/users/wccesq/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/some-coding-problems-1/#post-5407226)
 * Status: resolved