Reduce size of responsive title

You can add custom CSS where you use media query in order to reduce the font-size of the title in small devices. You also have some styling that remove the line break and add the 3 dots at the end. So you can also remove them. You can try this code : @media all and … Read more

Change Responsive Images Maximum Width of 1600px

You can simply remove that limit, go to your functions.php and add this code. function remove_max_srcset_image_width( $max_width ) { return false; } add_filter( ‘max_srcset_image_width’, ‘remove_max_srcset_image_width’ ); If you want to increase, go to your functions.php and add this code. function custom_max_srcset_image_width( $max_width, $size_array ) { $max_width = 1800; return $max_width; } add_filter( ‘max_srcset_image_width’, ‘custom_max_srcset_image_width’);

Disabling Wp_is_mobile from backend?

It seems like your theme may be using the wp_is_mobile function incorrectly as it should not be used for theme specific styling, etc and is also unreliable as it only inspects the browser User-Agent. As I don’t know what your theme is, I cannot say for definite if that is the case but see this … Read more

twentythirteen h1 and h2 not resizing responsively

You would need to access your style sheet (style.css). Your site uses media queries to target specific screen sizes and apply different rules when the stylesheet interacts with them. In section 4.1, it defines the site title as: .site-title { font-size: 60px; } In Section 8.0, just beneath @media (max-width: 643px) it defines the site … Read more