sumbooty
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Make slider/banner full widthThank you egf! Following your suggestion, I was finally able to resolve the issue without having to install an additional plugin. Here’s what I did:
First, I did go to the media settings and uncheck all the additional picture sizes it duplicates. However, since I had already uploaded this picture some time ago, it had already created duplicates in, different sizes, in the uploads/2017/month folder. So I had to manually remove these duplicates from there.
I then modified the Functions.php, which is where the inline “?resize” is added, to the size I wanted.
I then found an error in my style.css. I was using Max-Width:100% in the .Flexslider class instead of just Width:100%.
Lastly, I tweaked the floating text “Top” property from a hardcoded value Top:305px to Top:75%, so that it renders the same in most browsers.
PS. To modify the banner further down below, I modified the vertical padding in Appearances->Layout Creator
Thanks again egf! ??
Forum: Developing with WordPress
In reply to: Make slider/banner full widthPROGRESS!!! The container was made larger by adding the above suggestion. Thank you!
The picture however, is not full width. The picture size is 1940×875 but somewhere it’s being constrained to 1600×450. Where might I look for that?Also, when I right click on the image and select view image, the url has an additional explicit property set, resize (?resize=1600%2C450). How can I remove that?
Thanks again!
Forum: Developing with WordPress
In reply to: Make slider/banner full widthThanks again for all your help. I searched all php and css files for this class. I found the “Homebuilder Builder Container” all by itself within homepage.php. However it has no max-width. It looks like this:
<?php
/*
Template Name: Builder
*/
?>
<?php get_header(); ?>
<div class=”homebuilder builder container”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<div class=”clearfix”></div>
<?php get_footer(); ?>Where else might I look?
I was able to add .flex-active-slide img to 100% inside the style.css. But I guess no change will come until we can make the container largerForum: Developing with WordPress
In reply to: Make slider/banner full widthThanks for the info egf. Where would I change this value? The image is just a URL inside layout creator and so I haven’t explicitly set that value myself. What is the name/class of the container? thanks