• Resolved gibbsr

    (@gibbsr)


    Hello, I have two issues on my site https://www.northstarnp.com . They should be easy to fix once I find the files to change…..

    1. I would like to override the 300x90px size of the “poloray logo” on the home page and can’t locate the .php file to modify it in. I hope that making it larger will make the text more crisp and easier to read.

    2. I would also like to set max and min widths for the image in the “Top Feature Image” in hopes of keeping it from distorted appearances on overly large and small viewing screens. I thought it must be in the .css file but could not locate it there or in any other .php file.

    Anyone able to point me in the correct path for either or both of these mods?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • For the logo it will require editing the header.php, make sure you create a copy from the parent folder into the child-theme folder.

    You will need to edit in 2 places:

    <div class="grid_8 alpha">
        <div class="logo">				
    
    <div class="grid_16 omega">
        <div class="menu_container">

    You will need to change grid_8 & grid_16, they should both be grid_12. You could also try a grid_10 & grid_14 or whatever you want as long the 2 numbers together equal 24.

    For the feature image add this to the style.css in the child-theme.

    .slides {
         height: 254px;
         overflow: hidden;
    }
    .flexslider .slides img {
        height: auto;
    }

    Thread Starter gibbsr

    (@gibbsr)

    Thank you Batharoy.
    Your solutions have corrected both problems.

    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing image sizes on home page’ is closed to new replies.