Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #55115
    Susan Lee
    Member

    I’ve just began using Catch Flames (free) and have a couple of questions:

    1. I looked thru the various forums for the code to remove the “search” box from above the banner image. I’ve implemented that code, but the “search” box remains. This is the code I found:

    #header .social-search form.searchform {
    display: none;
    }

    Instead of using the CSS area of the theme options, I’m using the Orbisius Theme Editor on a child copy of the theme, but I’ve tried adding the code in both places and neither worked. We really have no need for a search box so what am I doing wrong?

    2. I would like to add “word-break: keep-all;” to prevent hyphenation in the body text (mainly because the theme’s hyphenation doesn’t discriminate betwixt capitalized words/names), but I cannot figure out which batch of code I need to add it to.

    Site = http://wavelabstudio.com

    Thank you in advance for your help.

    Susan

    #55174
    Sakin
    Keymaster

    @Susan Lee:
    1. Yes, you can add the following css in your child theme style.css or in “Appearance => Theme Options => Custom CSS” box:

    #sidebar-header-right .widget_search { display: none; }

    2. You can simply add the following css in your child theme style.css or in “Appearance => Theme Options => Custom CSS” box:

    .site-content article {
      -webkit-hyphens: manual;
      -moz-hyphens: manual;
      hyphens: manual;
    }
    #55177
    Susan Lee
    Member

    Thank you!

    🙂

    #55515
    caesarq
    Member

    Hi,

    I would like to switch off word break within slider text (http://poznajswojeleki.pl/). I used CSS phrase mentioned above, but it works just for the body text in posts. Moreover word break works only in Mozilla browser and I dont’ like its effects, since I prepared website using Chrome. However some users can potentially use Mozilla.

    Thank you,
    caesarq

    #55534
    Sakin
    Keymaster

    @caesarq: Sorry this is Catch Flames support forum and you are using Catch Responsive theme, that is why it’s not working. For Catch Responsive theme, you can use the forum http://catchthemes.com/support-forum/forum/catch-responsive-free/.

    For your site, the css will be as below:

    .hentry {
      -webkit-hyphens: manual;
      -moz-hyphens: manual;
      hyphens: manual;
    }
Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘A couple of questions…’ is closed to new replies.