-
AuthorSearch Results
-
March 7, 2017 at 9:48 am #111417
In reply to: Wrong layout for static "Home Page".
MaheshParticipant@gonace: There is no demo data for the theme, almost all demos are there available with in the theme, you just have to enable the options. Example: Featured Slider, Featured Content, New Ticker etc
1) For widgets to be visible in only “Front Page”, you’ll need to use plugin for this.
2) Homepage acts as single page so it is displaying Sidebar, please change Single Page/Post Layout to No Sidebar Full Width and you’ll get full width page.
3) Checking on our server, the static page is working fine. Please post in your site url.
Instagram widget working fine in full width.Regards,
MaheshMarch 6, 2017 at 11:36 am #111366In reply to: Featured Image Slider
MaheshParticipant@keelin:
1. Yes, you can use Custom images and custom links on the slider. Go to Dashboard=> Appearance=> Customize=> Featured Slider and select Featured Image Slider in Select Slider Type option.2. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#hero-section .entry-header { display: none; }
3. Please refer to the theme instruction for this.
https://catchthemes.com/theme-instructions/parallax-frame-pro/#featured-image4. For this, add the following CSS:
#site-logo a:before { content: " "; background-image: url("url-to-your-desired-image.jpg"); display: block; height: 150px; width: 126px; } .header-background #site-logo a:before { content: none; } .fixed-header #site-logo a img { display: none; } .header-background #site-logo a img { display: block; }
Note: Use your desired image.
Regards,
MaheshMarch 4, 2017 at 9:28 pm #111295In reply to: disappearance of slider images on homepage
francesca78Participantthese are the option selected
Slider Options
Enable SliderTransition Effect
Transition Delay
5
Transition Length1
Select Slider TypeNumber of Slides
Customizer page needs to be refreshed after saving if number of slides is changed3
Check to disable slider text Check to Exclude Slider posts from Homepage posts
Featured Post Slider #144
Featured Post Slider #241
Featured Post Slider #31
March 4, 2017 at 12:33 pm #111265In reply to: disappearance of slider images on homepage
PratikParticipantHi @khGeorge,
Can you let me know what’s the option selected in Appearance => Customize => Featured Slider => Slider Options?
Regards,
PratikFebruary 20, 2017 at 10:34 am #110288In reply to: Flipping the Featured Header with the Banner
MaheshParticipant@omradiocom: You mean to place header-featured-image before Slider? If so, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme’s functions.php add the following codes.
add_action('init', 'fullframe_child_move_featured_header_above_slider'); function fullframe_child_move_featured_header_above_slider() { remove_action( 'fullframe_before_content', 'fullframe_featured_slider', 10 ); remove_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 20 ); add_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 10 ); add_action( 'fullframe_before_content', 'fullframe_featured_slider', 20 ); }
Regards,
MaheshFebruary 19, 2017 at 10:23 am #110225In reply to: Full Frame Pro – Front page image slider
PratikParticipantHi @Garret,
As you can see your site, I have added two image with non clickable links and its working fine. Please check Appearance=> Customize=> Featured Slider. You can increase the number of sliders and add in new images as desired. Please do not forget to save and refresh after you have changed slider number.
For more info, please see Theme Instructions and check Featured Image Slider section.
Regards,
PratikFebruary 17, 2017 at 9:26 am #110038PratikParticipantHi @F,
The above code will change the sizes of Featured Content Title, Slider Title a,d all other titles. On reading your request again, it seems you only want to increase size. For that, use following code:
Please increase the size to see cgange. E.g:
@media screen and (min-width: 500px) { #feature-slider .entry-title { font-size: 50px; } }
It will increase size of Text Top 8 Mountain gateway on screens with viewport greater than 500px. Please increase/decrease 52px to suite your need.
Let me know if this is what you wanted.
Regards,
PratikFebruary 16, 2017 at 10:39 pm #110000FParticipantHi Pratik,
Thank you.
Could you please clarify what the first set of code controls, specifically?
#featured-content .entry-title, #feature-slider .entry-title, #header-featured-image .entry-title, #header-highlights-content .entry-title {
font-size: 24px; /*Increase/decrease font-sized , Default is 22px*/
}When I change the font size of this code, I do not see changes (perhaps I am looking in the wrong place). When I change the second set of code (the part that comes after @media screen), I definitely see the title font change in the “Featured Content” section, in the body of the home page (the part in the demo that has entries such as “photo shoot” “wildlife photography”. https://catchthemes.com/demo/helena/
However, there is no change in the title of the slider at the top of the homepage, where the posts display (“Top 8 Mountain Getaways”)
Kindly,
FFebruary 16, 2017 at 5:01 pm #109969In reply to: Add the new field in customizer featured slider
shahid864Participantwhat is the best way i can call that in featured slider area with first button ?
February 16, 2017 at 2:32 pm #109943In reply to: Add the new field in customizer featured slider
PratikParticipantHi @shahid864,
In your child theme , create a function to add just that link and hook it to
customize_register
hook. E.g:
function clean_business_add_slider_link_2( $wp_customize ){ $featured_slider_number = apply_filters( 'clean_business_get_option', 'featured_slider_number' ); //loop for featured post sliders $priority = '11'; for ( $i=1; $i <= $featured_slider_number ; $i++ ) { $wp_customize->add_setting( 'featured_link_2_'. $i, array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'featured_link_2_'. $i, array( 'active_callback' => 'clean_business_is_image_slider_active', 'label' => esc_html__( 'Link 2', 'clean-business-pro' ), 'priority' => $priority . '.' .$i . $i . $i, 'section' => 'clean_business_featured_slider', 'settings' => 'featured_link_2_'. $i, ) ); } } add_action( 'customize_register', 'clean_business_add_slider_link_2' );
February 16, 2017 at 1:39 pm #109929PratikParticipantHi @F,
Please use following code:
#featured-content .entry-title, #feature-slider .entry-title, #header-featured-image .entry-title, #header-highlights-content .entry-title { font-size: 24px; /*Increase/decrease font-sized , Default is 22px*/ } @media screen and (min-width: 910px) { #featured-content .entry-title, #feature-slider .entry-title, #header-featured-image .entry-title, #header-highlights-content .entry-title { font-size: 30px; /*Increase/decrease font-sized , Default is 28px*/ } }
Regards,
PratikFebruary 15, 2017 at 8:36 pm #109828In reply to: Change background color of Featured Slider
real_makkoyParticipantHello,
My featured post slider is set to fade. The background color when it fades is grey. How do I change it to black while it is transitioning so it is a cleaner transition. My website is http://www.makkoy.comFebruary 15, 2017 at 1:32 pm #109766In reply to: Full Frame Pro – Front page image slider
PratikParticipantHi @Garret,
You need to use Featured Image Slider as slider type and either leave the Link blank.
Regards,
PratikFebruary 14, 2017 at 9:43 pm #109708FParticipantSorry, to clarify:
Featured image is now appearing as expected on PAGES.
On POSTS, it appears that the featured image was added to the top. What I mean by this is that the top image appears as expected, but the feature image is duplicated, appearing above the post title. Rather than replacing the full size display of the feature image with the slider/header size, it now has both.
I have tried to fix this by editing the post: going to the bottom of the page where it says HELENA OPTIONS > SINGLE PAGE POST IMAGE. Here I select DISABLE, hoping to remove the additional image, but nothing happens. If I select another option, like making this duplicate image a smaller size such as HELENA SMALL or POST THUMBNAIL, this duplicate image does change to the smaller size. But I cannot get rid of it.
I hope this helps to clarify the issue.
February 14, 2017 at 9:13 pm #109702FParticipantThank you. Yes, this works, but now the featured image shows up twice on pages and posts. Once on top, as expected, and again below the title, only this time it’s smaller (full size, not slider size). How can I make it so that the featured image shows on the top, but doesn’t automatically duplicate itself?
Cheers!
February 14, 2017 at 10:06 am #109637In reply to: Remove white space
real_makkoyParticipanthello,
I also tried to use page sliders instead of the post sliders but the featured image is not showing up in 3 of the 4 of pages. http://www.makkoy.com
IS there an error in my css?#main-slider .entry-title span, #main-slider .entry-content {
}
h6.bazinga {
font-size: 15px;
font-weight: bold;
color: #645240 !important;
}
#featured-post #featured-post-4 {
text-align: center;
width: 83%;
}#featured-post #featured-post-4 .entry-title {
font-size: 16px;
}#homepage-message { margin-top: 0; }
input#s { color: #E56717; }
a {color: #E56717;}
Follow my blog with Bloglovin#main-slider .entry-title span,
#main-slider .entry-content {
background: none transparent;
color: #fff;
}
#header-menu .menu .current-menu-item > a, #header-menu .menu .current-menu-ancestor > a, #header-menu .menu .current_page_item > a, #header-menu .menu .current_page_ancestor > a, #colophon .menu .current-menu-item a {
background-color: #fd4905;
color: #000000 !important;
}
.wpurp-container { background: dark; }.form-allowed-tags{
display:none;
}February 14, 2017 at 1:21 am #109601In reply to: Featured Slider
real_makkoyParticipantI have updated my subscription. I am trying to change the featureds slider text from white to black. I currently have the code below in my additional css. but each time i try to change color to #000 or #000000 I get error code Markup is not allowed in CSS. How do I make this update. Thanks
#main-slider .entry-content {
background: none transparent;
color: #fff;
}February 11, 2017 at 9:13 am #109399In reply to: Link to pages from homepage slider
MaheshParticipant@luigibella: Just did the same and nothing happens. The image are no longer clickable means no link in the featured slider. May be because of caching. Please try clearing cache. Let me know further.
Regards,
MaheshFebruary 11, 2017 at 1:51 am #109364In reply to: Link to pages from homepage slider
luigibellaParticipantThanks for checking, strangely enough when I check though each image(currently there are 5) is a permalink to a page(the page that is pointed to under customize-Featured Slider-Featured Page#1-#5).
and from the homepage when I hover over the first slide I see
Permalink to: About Us
and if I click on it I get brought to: http://swotcentraltexas.com/about-us/Can you help me remove the linking to the pages?
February 9, 2017 at 9:21 pm #109251In reply to: Featured slider….how to activate
spot0608Participantnever mind, got it…it´s not a featured slider, it´s a responsive slider and I need the plugin…
-
AuthorSearch Results