Forum Replies Created
-
AuthorPosts
-
han
KeymasterHi 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.
han
KeymasterHi Jeremiah,
Church+ homepage is widget based, pretty easy to setup.
- Activate all the recommendation plugins
- Create a new page for home page and setup a static front page
- Add new slideshow via Soliloquy plugin, or any slideshow plugin you like
- 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+
han
KeymasterFor your case, you need omega-child.pot. Glad you solved it.
han
KeymasterHi 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.han
KeymasterTry add background position attribute into banner class.
.home .banner, .banner { background-position: 50% 0px; }han
KeymasterYou 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)
han
KeymasterHi,
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; }han
KeymasterIt 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)
han
KeymasterHi 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 1212han
KeymasterHi 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; } }han
Keymaster.site-description { font-size: 15px; font-weight:bold; }han
KeymasterHi, 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
han
Keymasteroh, 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>han
KeymasterSorry I miss-understood.
Not sure what you mean with “add a space between “Nordahl” and the horizontal line” ? Which horizontal line?han
KeymasterGo to “Appearance > Customize > CSS” and drop this code
.site-description::before { content: "—"; margin-left: 5px; } -
AuthorPosts
