Forum Replies Created
-
AuthorPosts
-
I am having the issue with WP 4.5.1 as well.
I am with Godaddy Managed WP.
I found a solution that worked for me in my functions.php:
function ava_image_sizes() {
add_image_size(‘masonry’, 0, 0);
add_image_size(‘magazine’, 0, 0);
add_image_size(‘widget’, 0, 0);
add_image_size(‘featured’, 0, 0);
add_image_size(‘featured_large’, 0, 0);
add_image_size(‘extra_large’, 0, 0);
add_image_size(‘portfolio_small’, 0, 0);
add_image_size(‘gallery’, 0, 0);
add_image_size(‘entry_with_sidebar’, 0, 0);
add_image_size(‘entry_without_sidebar’, 0, 0);
add_image_size(‘square’, 0, 0);
}
add_action( ‘after_setup_theme’, ‘ava_image_sizes’, 11 );I found it here:
https://kriesi.at/support/topic/upload-image-giving-http-error-theme-error/
My hero Josue!!
Thank you Josue!!
If there is a better way of doing it please mention it.
Thank you.
I figured out a work around.
I have the setup like this now:
Text Block Element
Picture Element
Text Block Element
Fullwidth Button ElementI added the following code to the css:
.minheight {
min-height: 375px;
}and then I added the ‘minheight’ to the Custom Css Class in the Text Block Element above the Fullwidth Button Element to make it so the bottom of the Text Block Elements are ending at the same spot so the Fullwidth Button Elements will start at the same spot and align together.
Hopefully this will be useful to somebody else.
Thank you.
Sorry about that, I reposted the image.
How do I get the bottoms to align at the bottom of the column?
Thank you.
I am putting this on here in case somebody else had the same thing happen to them….
I tried it and it didn’t work for me.
I changed it to this and it worked for me:
span.blog-categories, .slide-meta {
display: none !important; }Thank you!
Yeah, that did it. Thank you.
I just need to keep playing with it until I figure out what I did wrong and how to do it right, I am on a mission to figure this one out.
Thanks again for the help.
Okay, I am still lost on what does what now.
All of the icons show pencil icons now.
I am not seeing what makes the code connect with the icons.
Why are the pencil icons showing up now and how do I make the connection to the actual icons?
Thank you.
Thank you!!
I think I see exactly where I messed up after comparing what you did to what I had that was’nt working.
Thanks again!!
Sure thing, thank you.
- This reply was modified 8 years, 7 months ago by Micheal0424.
Perfect, thank you.
That worked perfectly, thank you very much!!
I actually wanted it to be the other way around.
I like the functionality of the fullwidth button and would like the regular button to have the ability to control the button background color and the hover color like the fullwidth allows.
Thank you.
Hello,
I added:
@ini_set( ‘upload_max_size’ , ’64M’ );
@ini_set( ‘post_max_size’, ’64M’);
@ini_set( ‘max_execution_time’, ‘300’ );to my Enfold Child: Theme Functions (functions.php) and it didn’t increase the allowed size to upload.
Do I have to add it directly into the functions.php instead of the child?
Thank you.
I will just put this in the suggested features area.
That way everybody can benefit from it.
This is an example:
https://wordpress.org/plugins/jquery-validation-for-contact-form-7/screenshots/
I don’t care for contact form 7, I like the one on here much better, but this addon plugin has some good features.
Thanks.
February 13, 2016 at 7:08 am in reply to: Images for background Color Section for mobile devices #582632Thank you, that makes sense.
I think I was trying to hard to find the perfect size and not focusing on the ratio of the image as much as I should have. I will focus on the ratio and accept the fact that the sides of the image will be lost, that is normal.
Thanks again for your help.
That is a great plugin, thank you for the information…very useful.
Greatly appreciated!!
Got it, thank you.
The link was useful, any idea on any plugins that redirect certain pages when being viewed with a mobile device?
Thank you.
That didn’t help with the background image, any other ideas?
Thank you.
Sorry about that, I had the country blocking settings on.
The code you gave worked perfectly, thank you.
The security settings were to block outside of the U.S., sorry about that.
IT has been removed and is ready to view.
Thank you
This code was working before but is no longer working.
Is there a new code I can use?
I tried altering this one to try and get it to work but had no luck.
Any help is greatly appreciated here, thank you.
You can see the image looks good on the desktop but when you view it on a mobile device it is blurry.
How can this be resolved?
Thank you.
Love the way you incorporated the branding feel in to the website, great visuals as well. Very nicely done!!
Great photography in this website, all put together very nicely!!
Great link, was useful for me. Thank you for sharing.
This is what I did with the link above:
Appearance>Editor>Functions PHP (child theme):
function jl_remove_post_dates() {
add_filter(‘the_date’, ‘__return_false’);
add_filter(‘the_time’, ‘__return_false’);
add_filter(‘the_modified_date’, ‘__return_false’);
add_filter(‘get_the_date’, ‘__return_false’);
add_filter(‘get_the_time’, ‘__return_false’);
add_filter(‘get_the_modified_date’, ‘__return_false’);
} add_action(‘loop_start’, ‘jl_remove_post_dates’);This worked like a charm for me.
That worked perfectly, thank you so much for your help.
Is that what you mean?:
.border-bottom .main_menu ul:first-child > li.current-menu-item > a, .border-bottom .main_menu ul:first-child > li.current_page_item > a {
color: black !important;
}Thank you.
That worked great for me, thanks.
Follow up question:
How do I remove the line below the current page in the navigation menu or at least control the color?
I have the button style selected for one of my navigation menu items so I am using the Theme Options/General Stylings/Logo Area/Primary Color set to the color I need which is also making the line underneath the navigation menu links colored.
If i can use some Quick CSS to remove or control the color of the line underneath the navigation menu items that would be great.
Thank you very much for any help you can provide.
November 26, 2015 at 5:10 am in reply to: Fullwidth Slider html image in caption for mobile device #542844Worked perfectly, thank you very much.
November 24, 2015 at 9:48 pm in reply to: Fullwidth Slider html image in caption for mobile device #541942Here is the link, thank you.
-
AuthorPosts