Profile Cover

Profile Cover [Paid] 2.2.1

No permission to buy ($9.90)
Well the world is moving the way - big monitors, smart phones and other gadgets make fluid designs a must.
Hmm i surf my site from an iPhone everyday and and the fixed style doesn't change one tiny bit from the fluid style, Same results on my iPad.. And i have large widescreen monitors and is frankly a reason i moved to fixed.. The wide monitors are tiring to read on fluid sites.. a single line can be an entire paragraph.. Its aesthetically ugly and difficult to read long posts, IMO.. But at the end of the day its your site and your choice i could care less.
 
Hmm i surf my site from an iPhone everyday and and the fixed style doesn't change one tiny bit from the fluid style, Same results on my iPad.. And i have large widescreen monitors and is frankly a reason i moved to fixed.. The wide monitors are tiring to read on fluid sites.. a single line can be an entire paragraph.. Its aesthetically ugly and difficult to read long posts, IMO.. But at the end of the day its your site and your choice i could care less.

I use a fixed width design with XF responsive-ness

Well lets all agree to disagree and let the author to respond to see what he wants to do. I hope he will be willing to look into it.
 
unfortunately for me! I try to understand what's your discussion but I still don't understand what's really you need :oops:
 
unfortunately for me! I try to understand what's your discussion but I still don't understand what's really you need :oops:

Oh no problem. Sorry if I was not clear enough:

Screenshot 2014-02-07 15.31.44.webp

I would like the black in this image to automatically stretch to the width of the browser - or be fluid - with adjustable dimensions.

So from the boarder of the avatar on the left to the right side of the browser would be black.

I would want the image to automatically stretch to fit the browsers size.

:) Hope that helps.

Thanks,
Denis
 
Oh no problem. Sorry if I was not clear enough:

View attachment 66753

I would like the black in this image to automatically stretch to the width of the browser - or be fluid - with adjustable dimensions.

So from the boarder of the avatar on the left to the right side of the browser would be black.

I would want the image to automatically stretch to fit the browsers size.

:) Hope that helps.

Thanks,
Denis
Afraid you must edit it for your site. Because if I using it so function draging is no need :D
 
Sorry, I did not understand that entirely. How can I do this myself?
Sorry for respond too late :)
In template profile_cover.css you find this css:
Code:
.ProfileCoverPhoto
{
    max-width: {$xenOptions.coverPhotoMaxDimensions.width}px;
    margin: 0 auto;
}
    .ProfileCoverPhoto .Popup .PopupControl.PopupOpen {
        background: none;
    }
    .ProfileCoverPhoto .Popup .PopupControl.PopupOpen:hover {
        background: none;
    }
.ProfileCoverPhoto .photoWrap { position: relative; }
.ProfileCoverPhoto .coverPhotoWrap, .constructionWrap
{
    height: {$xenOptions.coverPhotoMaxDimensions.height}px;
    overflow: hidden;
    max-width: {$xenOptions.coverPhotoMaxDimensions.width}px;
    width: 100%;
    margin: 0 auto;
}

And replace by:
Code:
.ProfileCoverPhoto
{

    margin: 0 auto;
}
    .ProfileCoverPhoto .Popup .PopupControl.PopupOpen {
        background: none;
    }
    .ProfileCoverPhoto .Popup .PopupControl.PopupOpen:hover {
        background: none;
    }
.ProfileCoverPhoto .photoWrap { position: relative; }
.ProfileCoverPhoto .coverPhotoWrap, .constructionWrap
{
    height: {$xenOptions.coverPhotoMaxDimensions.height}px;
    overflow: hidden;

    width: 100%;
    margin: 0 auto;
}
 
Sorry for respond too late :)
In template profile_cover.css you find this css:
Code:
.ProfileCoverPhoto
{
    max-width: {$xenOptions.coverPhotoMaxDimensions.width}px;
    margin: 0 auto;
}
    .ProfileCoverPhoto .Popup .PopupControl.PopupOpen {
        background: none;
    }
    .ProfileCoverPhoto .Popup .PopupControl.PopupOpen:hover {
        background: none;
    }
.ProfileCoverPhoto .photoWrap { position: relative; }
.ProfileCoverPhoto .coverPhotoWrap, .constructionWrap
{
    height: {$xenOptions.coverPhotoMaxDimensions.height}px;
    overflow: hidden;
    max-width: {$xenOptions.coverPhotoMaxDimensions.width}px;
    width: 100%;
    margin: 0 auto;
}

And replace by:
Code:
.ProfileCoverPhoto
{

    margin: 0 auto;
}
    .ProfileCoverPhoto .Popup .PopupControl.PopupOpen {
        background: none;
    }
    .ProfileCoverPhoto .Popup .PopupControl.PopupOpen:hover {
        background: none;
    }
.ProfileCoverPhoto .photoWrap { position: relative; }
.ProfileCoverPhoto .coverPhotoWrap, .constructionWrap
{
    height: {$xenOptions.coverPhotoMaxDimensions.height}px;
    overflow: hidden;

    width: 100%;
    margin: 0 auto;
}

Ah just take out the max-width: Ok thank you!
 
Top Bottom