Forum Replies Created
-
AuthorPosts
-
Skandha
Participant@catchrmv: You can find out the width of the body or sidebar using Inspect Element function of the browser by hovering over the content body or the sidebar.
Let me know if this helps you out.
Kind Regards,
SkandhaSkandha
Participant@mezalick: For this you will need to create a child theme and do a little bit of customization. Let me know if you are comfortable with customization.
Kind Regards,
SkandhaSkandha
Participant@svguitar: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
https://wordpress.org/support/theme/simple-persona/reviews/#new-post
Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
don’t hesitate to let me know. Have a good day!! 🙂Kind Regards,
SkandhaSkandha
Participant@torsten-ruedebuschberlin-de: If you mean to remove the additional text below the slider page title.
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.#feature-slider p { display:none; }Let me know if this is what you want.
Kind Regards,
SkandhaSkandha
Participant@torsten-ruedebuschberlin-de: Can you please let me know which additional text you want to be removed??
Kind Regards,
SkandhaSkandha
Participant@boxhamster: I will contact you shortly by email.
Kind Regards,
SkandhaSkandha
Participant@svguitar: I’m afraid the option to select 5 columns for Services layout is not available in the theme options. For this I suggest you to hire a customizer.
Kind Regards,
SkandhaSkandha
Participant@svguitar: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
.fa.fa-play { display:none; }Let me know if this does the trick!
Kind Regards,
SkandhaSkandha
Participant@thetravelgal: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
#header-featured-image img { width:1200px; }Let me know if this does the trick!
Kind Regards,
SkandhaSkandha
Participant@thetravelgal: I will get back to you soon on this?
Kind Regards,
SkandhaSkandha
Participant@alunana: To use HTML tags to the site title you will need to create a child theme and to a bit of customization. However, I think you can copy and paste this text for superscript
²in the site title text area in the customizer.Let me know if this works out.
Kind Regards,
SkandhaSkandha
Participant@benderpc: I checked your site and the above code I provided you seem to have done the job. Please try clearing your browser cache to check if the issue is resolved.
Let me know if the issue persists!
Kind Regards,
SkandhaSkandha
Participant@benderpc: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
https://wordpress.org/support/theme/decree/reviews/#new-post
Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
don’t hesitate to let me know. Have a good day! 🙂Kind Regards,
SkandhaSkandha
Participant@torsten-ruedebuschberlin-de: Thank you very much! Have a good day! 🙂
Kind Regards,
SkandhaSkandha
Participant@alunana: Can you let me know what would you like to do to the site title by adding HTML tags?
Kind Regards,
SkandhaSkandha
Participant@adrmusic: Thank you very much for your appreciation. Have a good day! 🙂
Kind Regards,
SkandhaSkandha
Participant@svguitar: For this you will need to create a child theme. If you do not know how to create a child theme then you can use Generate Child Theme Plugin.
Go to => Text editor => Paste the following code and save it as
header.phpin the child theme folder.<?php /** * The header for our theme * * This is the template that displays all of the <head> section and everything up until <div id="content"> * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Simple Persona */ ?> <!doctype html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'simple-persona-pro' ); ?></a> <header id="masthead" class="site-header"> <div class="wrapper"> <div class="site-header-main"> <?php get_template_part( 'template-parts/header/site', 'branding' ); ?> <?php get_template_part( 'template-parts/navigation/navigation', 'primary' ); ?> </div><!-- .site-header-main --> </div><!-- .wrapper --> </header><!-- #masthead --> <div class="below-site-header"> <?php get_template_part( 'template-parts/slider/content', 'slider' ); ?> <?php get_template_part( 'template-parts/header/header', 'media' ); ?> <?php ! get_theme_mod( 'simple_persona_events_position' ) ? get_template_part( 'template-parts/events/content', 'event' ) : ''; ?> <?php get_template_part( 'template-parts/hero-content/content', 'hero' ); ?> <?php get_template_part('template-parts/portfolio/display','portfolio'); ?> <?php get_template_part('template-parts/featured-content/display','featured'); ?> <?php ! get_theme_mod( 'simple_persona_testimonial_position' ) ? get_template_part( 'template-parts/testimonial/display', 'testimonial' ) : ''; ?> <?php $enable_homepage_posts = simple_persona_enable_homepage_posts(); if ( $enable_homepage_posts ) : ?> <div id="content" class="site-content"> <div class="wrapper"> <?php endif; ?>Now I the events section should display above the hero content.
Let me know if this works out.
Kind Regards.
SkandhaSkandha
Participant@abisbee: For this, I suggest you to hire a customizer or find a suitable plugin from the WordPress Plugin Repository.
Let me know if this solve the issue.
Kind Regards,
SkandhaSkandha
Participant@pastonchase: The original size of the images you have used in 400*225px and you are trying to stretch it to a height of 650px that is the reason the images are not showing up well. To get the image to show up properly I suggest you to maintain similar aspect ratio with respect to the original size of the image.
Let me know if this helps you out.
Kind Regards,
SkandhaSkandha
Participant@mossifer: Thank you for the reply but I suggest you not make changes to core theme files directly without creating a child theme as all your changes will get deleted when you update the theme. So always creating a child theme to be on the safe side.
@sezg: Sorry for the late reply. To edit the footer first you will need to create a child theme. If you do not know how to create a child theme you can use Generate Child Theme Plugin. Then Go to => Child Theme Folder => functions.php and the following code. You can make the necessary changes to the following Code customize the footer.function clean_journal_get_content() { $theme_data = wp_get_theme(); $clean_journal_content['left'] = sprintf( _x( 'Copyright © %1$s %2$s. All Rights Reserved. %3$s', '1: Year, 2: Site Title with home URL 3: Privacy Policy Link ', 'clean-journal' ), esc_attr( date_i18n( __( 'Y', 'clean-journal' ) ) ), '<a href="'. esc_url( home_url( '/' ) ) .'">'. esc_attr( get_bloginfo( 'name', 'display' ) ) . '</a>', get_the_privacy_policy_link() ); $clean_journal_content['right'] = esc_attr( $theme_data->get( 'Name') ) . ' ' . __( 'by', 'clean-journal' ). ' <a target="_blank" href="'. esc_url( $theme_data->get( 'AuthorURI' ) ) .'">'. esc_attr( $theme_data->get( 'Author' ) ) .'</a>'; return apply_filters( 'clean_journal_get_content', $clean_journal_content ); }Let me know if this helps you out.
Kind Regards,
Skandha -
AuthorPosts
