How can i make a theme responsive or the width adjust for all browsers and devices? MyBB -


i want make theme fit browsers , mobile devices , responsive, how can im using forum software mybb forum link is: http://deepblood.com/

help me please need can official launch site.

if assist me issue grateful :)

forum: http://deepblood.com/

software: mybb

how can make theme responsive browsers , devices?

let me go simple complex.

  1. use free responsive mybb theme.
  2. use paid responsive mybb themes
  3. customizing non-responsive theme. (most probably, interested in this). use chrome inspect elements or firefox firebug see width of div elements , change fixed value in pixels percent denoted % on css. recommend create custom css file put on template. eg.

    @media (max-width: 768px) {     .warpper {      width: 100%;    } } 

    the above css code targets browser/device width of 768px , below. read more, follow this article. can use responsive mobile menu. have check , make each page responsive until find no component not responsive.


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -