We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

newsfeed [Solved] | Forum

Topic location: Forum home » Support » General Questions
alex castillo
alex castillo Feb 24 '14
can enlarge photos newsfeed?


I want the pictures uploaded on the News section look bigger!


The Forum post is edited by ross Feb 27 '14
ross Team
ross Feb 25 '14
ow_plugins/newsfeed/views/components/feed.html


.ow_newsfeed_large_image .ow_newsfeed_item_picture {        width: 38%;        max-width: YOUR VALUE px

ross Team
ross Feb 25 '14
also you can play around with values in these lines: 

.ow_newsfeed_item_picture {

        width: 28%;

        float: left;

        max-width: 100px;

        min-width: 70px;

        margin-right: 1%;

    }


    .ow_newsfeed_large_image .ow_newsfeed_item_picture {

        width: 38%;

        max-width: 450px;

    }


    .ow_newsfeed_large_image .ow_newsfeed_item_content {

        width: 60%;

        max-width: 390px;

    }


    .ow_newsfeed_item_picture img {

        width: 100%;

    }


    .ow_newsfeed_item_content {

        float: left;

        min-width: 50px;

        width: 69%;

        max-width: 440px;

    }



to get what you're trying to achieve

alex castillo
alex castillo Feb 26 '14
nothing happens the images do not resize
alex castillo
alex castillo Feb 26 '14
change all numbers and images not increase the size
ross Team
ross Feb 26 '14
this is not possible. you do something wrongow_plugins/newsfeed/views/components/feed.html


.ow_newsfeed_large_image .ow_newsfeed_item_picture {        width: 38%;        max-width: YOUR VALUE px

alex castillo
alex castillo Feb 26 '14
ready! thank you!
ross Team
ross Feb 27 '14
Great!