Afterimage Designs
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Post Page – Full Width no containerHi claudiof1,
I have no idea about this builder but I tried it for you and found a workaround ??
Please add this css code to your stylesheet
.page-id-1974 #dslc-content { overflow: visible; }/*Please change page id with the page ID of your page I think it is .postid-3680*/
And Follow this video – https://www.screencast.com/t/f858foFz
Good luck ??
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Removing template FontsHi claudiof1,
You can remove the font by adding a code like this in your functions.php file but I recommend this adding in your child theme
function wpbs_dequeue_fonts() { /*wp_dequeue_style( 'fontID-you-want-to-remove' );*/ /*Sample*/ wp_dequeue_style( 'wp-bootstrap-starter-poppins-lora-font' ); } add_action( 'wp_enqueue_scripts', 'wpbs_dequeue_fonts', 20 );
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Landing page full widthHi tristanmagnus,
I create a screencast https://www.screencast.com/t/gpvGstaj on how to properly implement the full-bleed section, I added a background in the section for you to see that it will go full bleed. I hope this helped. I visit your web page and it seems you found a solution.
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Missing FooterYour welcome ??
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Header Banner on all pagesHi Todd,
Yes, There is a way, you can edit the header.php and remove the code I boxed out – https://www.screencast.com/t/3FUtXmEOO, I suggest you do it in the child theme.
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Landing page full widthHi tristanmagnus,
Thank you for using the WP Bootstrap Starter theme.
For your first question, the full-width template is a normal template that have no sidebar, to make the section side by side you should change your code to something like this
<section class="full-bleed-section"> <div class="container">Sample Content Here</div> </section>
The full-bleed-section class is a prebuild class is in the theme so you can use it without adding any additional css
2nd Question, Yes you can delete it in the template but the easiest solution is to hide it using css
.page-id-27 #main > article .entry-header {display: none;} /*just change the page ID*/
or if you want to remove it in all of the page
#main > article .entry-header {display: none;}
3rd Question, Yes the blank without container will remove everything which suitable for a page builders.
After checking your code I found that you did not put your sections inside the entry-content div – https://www.screencast.com/t/uYu7vp0aOs7 so I just rearrange the code and use the full-bleed-section class and this is the output
Here are the CSS code I added in the page
.page-id-27 #content, .page-id-27 #content #primary { padding-top: 0; } .page-id-27 #content #main article .entry-content { margin-top: 0; } #hero { background-size: cover; }
and here is the source code of your page – https://www.dropbox.com/s/3g9wqqj5wq1jvtz/html.zip?dl=0
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Missing FooterHi claudiof1,
I am sorry I forgot that I intentional remove the footer in blank templates, to make it show please change the code of the footer.php of the child theme to this
<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.www.ads-software.com/themes/basics/template-files/#template-partials * * @package WP_Bootstrap_Starter */ ?> </div><!-- .row --> </div><!-- .container --> </div><!-- #content --> <?php get_template_part( 'footer-widget' ); ?> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="container"> <div class="site-info"> © <?php echo date('Y'); ?> <?php echo '<a href="'.home_url().'">'.get_bloginfo('name').'</a>'; ?> <span class="sep"> | </span> <a class="credits" href="https://afterimagedesigns.com/" target="_blank" title="Wordpress Technical Support" alt="Wordpress Technical Support"><?php echo esc_html__('Wordpress Technical Support','wp-bootstrap-starter'); ?></a> </div><!-- close .site-info --> </div> </footer><!-- #colophon --> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Excerpt HeadersHi apidevlab,
Thanks for using WP Bootstrap Starter theme. I will think about your suggestion.
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Missing FooterHi claudiof1,
Thanks for using our theme, I check the source code of your website but I can not see the any html code related to footer. Can you copy the footer.php from the parent theme to your child theme? by the way nice website ??
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Recomendation for work with SASSHi alex1305,
I already remove the SASS file since version 2.4.9 inside the theme because developers file can not be included in the theme. But you can check this article on how to work with SASS – https://scotch.io/tutorials/getting-started-with-sass. Thank you
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] little error woocommerce shop pageHi alex1305,
I already fix the issue in my previous theme update. Thanks for actively reporting issues
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Add button read moreHi alej,
To add “Read more” button you can edit the file content.php inside the “template-parts” directory and add the code below in line 44 before the closing div of entry content.
<a href="<?php the_permalink(); ?>">Read More</a>
I suggest to do it inside the child theme.
- This reply was modified 7 years, 6 months ago by Afterimage Designs.
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Move Toggled Menu Below HeaderHi xmatter,
Did you fix the header? can you share the login to me so that I can determine the problem?
Hi saidmalkharusi,
Thank you for your suggestion, I implement this in the latest version of the theme. ??
- This reply was modified 7 years, 6 months ago by Afterimage Designs.
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] Header SizeHi Todd,
Using the latest version of the theme, there is no need to add a css code when changing your header image, you just need to click the “Skip Cropping” button so that it will not crop – https://www.screencast.com/t/Eb10hAUlBn. Thanks
- This reply was modified 7 years, 6 months ago by Afterimage Designs.