Tagged: , ,

Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #817428
    #817609

    Hey rgruber,

    Could you post a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #817748
    #818352

    Hi rgruber,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #818399

    Info provided below in private content.

    #818585

    Hi,

    So you need to access the height attributes directly in the image tag?

    Best regards,
    Jordan Shannon

    #818752

    I want the image tag to either specify the natural full image size: 466 x 224 or not specify any size so it uses the full image.

    What I DON’T want is what is is doing now where it specifies the WRONG image size:

    <img height="100" width="300" src="http://borsheims.mediumstudios.com/wp-content/uploads/2017/07/thehub-300x145.png" alt="Borsheims" />

    This suggests to me that it’s pulling the medium version of the image rather than the full size version.

    I’m using a child theme “borsheims”, so I’m happy to alter the code where ever I need to, to pull the full size image. Right now I’m stretching it with CSS but it looks terrible. I need it to be 466 x 224 naturally.

    How do I make it do this?

    • This reply was modified 7 years ago by rgruber.
    #818810

    Hi,

    If you’re uploading the image via WordPress’s Media Manager, goto > Settings > Media in your admin panel and configure the max dimensions for the “Large” images uploaded via this.

    Also, make sure there is no generic css overriding your image sizes anywhere (from a plugin, quick css, etc)

    Best regards,
    Jordan Shannon

    #818815

    The image size for large images is currently set to 1030 x 1030.

    This isn’t the problem.

    Can you just tell me where in the code it is writing in the image tag so I can go in and change it?

    It doesn’t seem like you are really understanding the issue.

    I want the child theme to place the FULL SIZED Logo image in the header. There must be a way to NOT have it write a 300 x 100 image tag.

    Media Setttings

    • This reply was modified 7 years ago by rgruber.
    #818854

    Hi,

    I have removed the sizing attributes with a small bit of JS. Please see the following:

    https://snag.gy/pwiCNV.jpg

    This is what was added to functions.php:

    function LogoSizeCorrection() {
        echo '<script type="text/javascript">
                // Document ready
                jQuery(document).ready(function(){
                     jQuery(".logo a img").removeAttr("width height");
                });
                </script>';
    }
    
    add_action( 'wp_footer', 'LogoSizeCorrection' );

    Let me know if this is okay

    Best regards,
    Jordan Shannon

    #818859

    Almost.

    It does remove the sizing from the image, but it is still pulling a smaller version of the image:

    <img src="http://borsheims.mediumstudios.com/wp-content/uploads/2017/07/thehub-300x145.png" alt="Borsheims" />

    Is there a way for it to pull the full size version rather than the 300 x 145 version?

    It seems like the function that loads the image itself is calling for the medium size WordPress image rather than the full size one.

    Thanks for your continued help. Really appreciate it.

    • This reply was modified 7 years ago by rgruber.
    #818966

    Hi,

    Would you be able to provide admin info for the Dashboard?

    Best regards,
    Jordan Shannon

    #818996

    Information in private content below:

    #819020

    Hi,

    This is fixed. Please check to confirm. I re-uploaded the logo and selected the proper size from the media option. Please see the following:

    https://snag.gy/eW5EnJ.jpg

    Best regards,
    Jordan Shannon

    #819022

    Thank you Jordan.

    Appreciate your follow up. Must have missed the media size option.

    #819034

    Hi,

    No problem at all. I’m glad we were able to get this sorted out. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Logo Size being written into image tag, re-sizing through CSS distorts’ is closed to new replies.