Forum Replies Created
-
AuthorPosts
-
Pratik
MemberHi @shahid864,
In your child theme , create a function to add just that link and hook it to
customize_registerhook. 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' );Pratik
MemberI think I saw your reply but it is not here?
Pratik
MemberHi @Hans-Rudolf,
More option is in Appearance=> Customize=> Theme Options=> Excerpt Options=> Read More Text
To decrease side description font size, use following code in Appearance=> Customize=> Additional CSS box:
.site-description { font-size: 10px; /* Increase/decrease addording to your need /* }Regards,
PratikFebruary 16, 2017 at 1:52 pm in reply to: Author name and link not displaying at posts of the front page loop #109934Pratik
MemberHi @Rossana,
As long as the solution works :). Let me know if you have further issues.
Regards,
PratikPratik
MemberHi @bill@dieballsailing.com,
I cannot understand exactly what you mean. Can you share a screenshot of your problem? You can use dropbox, gdrive or something else to share image.
Regards,
PratikPratik
MemberHi @Hans-Rudolf,
Can you post your site url so I can check it?
Regards,
PratikPratik
MemberHi @Garret,
This is strange. I will need your admin credentials to check the issue. I will email you shortly.
Regards,
PratikPratik
MemberHi @bluesboy80,
You need to use a different slider. In this theme, the background image is set and used as slider to get that full background slider look, so it is not possible.
Regards,
PratikFebruary 16, 2017 at 1:39 pm in reply to: Increase size of title font on home page feature slider #109929Pratik
MemberHi @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,
PratikPratik
MemberHi @maviedecielia,
Maybe that is the case. I have not stumbled upon this kind of issue previously, 🙁 so I am not 100% sure.
Regards,
PratikPratik
MemberHi @wouwonline,
It depends on which one you want. for basic h2 and h3, just do following:
h2, h3 { color: #f2f2f2; /* Change this value to your desired hex color */ }For layouts, try following:`
@media screen and (min-width: 961px) { #primary { width: 75%; } #secondary { width: 24%; } }Let me know how it goes.
Regards,
PratikPratik
MemberThank you for the review 😀
Pratik
MemberHi @F,
Try following code:
.page-title, .entry-title, .section-title { letter-spacing: 0.1vw; }Regards,
PratikPratik
MemberHi @F,
Glad it worked out.
Regards,
PratikPratik
MemberFont for primary menu and body can be set different if you need.
Pratik
MemberHi @F,
If you want google font or other online fonts first you need to add this code:
@font-face { font-family: myCustomFont; src: url('link_to_source'); }If your font is websafe, no need to do above.
Then, for primary menu, try following code:
#site-header-menu { font-family: myCustomFont; }Regards,
PratikPratik
MemberHi @jean,
Can you post in your site url?
Regards,
PratikPratik
MemberHi @Laura,
If is because images have margons. Use following code in Appearance=> Customize=> Additional CSS box:
.home #content img { margin: 0; width: 100%; }Regards,
PratikPratik
MemberHi @malini,
Try following code in Appearance=> Customize=> Additional CSS box:
#promotion-message .right a { background-color: #fff; -webkit-background-color: #fff; -moz-background-color: #fff; }Change #fff to any hex color you desire.
Regards,
Pratik -
AuthorPosts
