• HI,
    I am creating a new WP 4.0 site using the Response v2 theme.

    I have 2 WP 3.4.2 sites running the older version of Response v1.1.26.

    My problem is that I cannot get the header to run the full width in the newer version. I think I’ve tried every combination of selections in the control panel, and I’ve looked through the “style.css” and the “header.php” available through the Appearance>Editor but can’t locate any code that looks like it might apply.

    Here’s the beginnings of the new site:https://vertexwater.com/water/

    I can’t show the example of the older versions that allow the full width header because they are password protected for their clients only.

    Thank you in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • In the media screen in bootstrap.min.css for min-width: 1200px, this code is where your issue is:

    .row-fluid .span7 {
    width: 57.26495726495726%;
    }

    That’s causing your header to only be 57% wide… I would add this custom CSS and it should fix the issue:

    header.row-fluid .span7 {width: 100%;}

    Alternatively, not using the .span7 class from the div around your logo would fix this issue without any CSS changes

    Thread Starter danvtx

    (@danvtx)

    Thanks for the info. I’m just added that little bit of code and it worked!

    My excitement may demonstrate just how difficult I find wading through all this code info. I’m really a visual guy!

    Thanks again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Theme: Response – can't make header image full width in new version’ is closed to new replies.