Skip to:
Content
Pages
Categories
Search
Top
Bottom

In ‘mobile device’, ‘Profile Box’ is big and ‘content area’ is small.

Viewing 3 replies - 1 through 3 (of 3 total)

  • Robin W
    Moderator

    @robin-w

    looks fine to me – all quite readable, but it is your site so your call!

    play with the following numbers

    so overall you might try

    /* Change margin */
    @media only screen and (max-width: 499px) {
    
    	/* Change the width of the author column */
    	#bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-topic-author, #bbpress-forums div.bbp-reply-author {
    		width: 50px;
    	}
    
    	/* position the left hand side of the content column */
    	#bbpress-forums div.bbp-reply-content {
    		margin-left: 70px;
    	}
    
    	/* hide the avatar */
    	a.bbp-author-avatar {
    		display: none;
    	}
    
    }

    DolZikoo
    Participant

    @narnal

    GREAT!

    This is done by adjusting the value.
    Thank you very much.

    ————————————————————-

    /* Change margin */

    @media
    only screen and (max-width: 499px) {

    /* Change the width of the author column */
    #bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-topic-author, #bbpress-forums div.bbp-reply-author {
    display: none;
    }

    /* position the left hand side of the content column */
    #bbpress-forums div.bbp-reply-content {
    margin-left: 0px;
    }

    /* hide the avatar */
    a.bbp-author-avatar {
    display: none;
    }

    }


    Robin W
    Moderator

    @robin-w

    no problem !!

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar