han

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 434 total)
  • Author
    Posts
  • in reply to: Page attributes on posts page (blog) #4038
    han
    Keymaster

    Hi Roger, thanks for purchasing Composer+. Posts don’t have page attributes (WordPress default). At the moment, Page builder (like its name) works on Page only.

    in reply to: How Do I Make My Page Look Like the Demo? #3987
    han
    Keymaster

    Hi Jeremiah,

    Church+ homepage is widget based, pretty easy to setup.

    1. Activate all the recommendation plugins
    2. Create a new page for home page and setup a static front page
    3. Add new slideshow via Soliloquy plugin, or any slideshow plugin you like
    4. Go to “Appearance > Widgets”, add Soliloquy widget to ‘Home Banner’ widget area, Text widget to ‘Home Intro’, and 3 Image widgets to ‘Home Featured’.

    Thanks for purchasing Church+

    in reply to: Omega translation #3978
    han
    Keymaster

    For your case, you need omega-child.pot. Glad you solved it.

    in reply to: Omega translation #3969
    han
    Keymaster

    Hi Angelo, thanks for purchasing Omega Child theme.

    1. Make sure you use the latest version of Omega Child (v1.1.2).
    2. Then please follow POEdit handbook (If you use Poedit pro, it’s a lot easier)
    3. Finally upload your new translation files (.po and .mo) into omega-child/languages directory.

    in reply to: Composer Plus Banner Displays Incorrectly #3920
    han
    Keymaster

    Try add background position attribute into banner class.

    .home .banner,
    .banner {
        background-position: 50% 0px;
    }
    in reply to: soliloquy slider on featured image #3910
    han
    Keymaster

    You can hide banner images for certain pages. Use this code if you want to hide banner for:
    – home page

    .home .banner {
      display:none;
    }

    – all pages (not post)

    .singular-page .banner {
      display:none;
    }

    – all posts (not page)

    .singular-post .banner {
      display:none;
    }

    – page with id 5 and home page

    .home .banner,
    .singular-page-5 .banner {
      display:none;
    }

    (You can find the page id from WordPress admin when you edit your page, you will see the page ID number in the URL. You can also see the id on the front end body class when you view source the html)

    in reply to: soliloquy slider on featured image #3908
    han
    Keymaster

    Hi,
    You can find “Add Slider” button above page editor. Click the button to insert a slideshow into a page.
    Then you can hide featured image via css. Go do “Appearance > Customize > CSS” and insert below code.

    .banner {
      display:none;
    }
    in reply to: Composer Plus Banner Displays Incorrectly #3906
    han
    Keymaster

    It appears that they are two different images. You need to remove featured images from pages and only use header image from Customizer (Appearance > Customize > Header Image)

    in reply to: Clickable phone number #3883
    han
    Keymaster

    Hi Samuel,
    Our themes should work with any plugins. You can give a try. If a phone number is written in a recognizable phone number format, then mobile phones would recognize the number as phone number and will convert it into a link. No plugin is required, it just works.

    The proper format to write a telephone number is:

    <(Area Code) >

    Example: +1 (565) 555-1212

    More, most smart phones would recognize these formats as well:

    +15655551212
    1-565-555-1212
    +1.565.555.1212
    565-555-1212
    565 555 1212

    in reply to: Composer Plus Banner Displays Incorrectly #3875
    han
    Keymaster

    Hi rublestix,
    You can increase the banner padding to display the whole image. Go to “Appearance > Customize > CSS” and insert below code

    .home .banner,
    .banner {
        padding: 330px 0px;
    }

    Free free to change the padding to fit your image height. If you have to adjust the padding on mobile screen, you add below css to target certain viewport size.

    @media only screen and (max-width: 768px) {	
    	.home .banner,
    	.banner {
    	    padding: 100px 0px;
    	}
    }
    in reply to: Change dimension of TITLE description on Church theme #3864
    han
    Keymaster
    .site-description {
        font-size: 15px;
        font-weight:bold;
    }
    in reply to: Change dimension of TITLE description on Church theme #3848
    han
    Keymaster

    Hi, if you mean the description font size is too big, you can make it smaller.
    Go to “Appearance > Customize > CSS” and insert below code

    .site-description {
        font-size: 15px;
    }

    Hope that helps

    in reply to: Change title in tab-window #3810
    han
    Keymaster

    oh, to change that one, please find omega/header.php and replace
    <title><?php wp_title( '|', true, 'right' ); ?></title>
    with
    <title><?php wp_title( ' -', true, 'right' ); ?></title>

    in reply to: Change title in tab-window #3808
    han
    Keymaster

    Sorry I miss-understood.
    Not sure what you mean with “add a space between “Nordahl” and the horizontal line” ? Which horizontal line?

    in reply to: Change title in tab-window #3802
    han
    Keymaster

    Go to “Appearance > Customize > CSS” and drop this code

    .site-description::before {
        content: "—";
        margin-left: 5px;
    }
Viewing 15 posts - 46 through 60 (of 434 total)