-4

how do i make a responsible website using CodeIgniter?

I am currently working on a website that is built by CI and i have tried changing the css in the assets file, and then i tried to inspect the page for God knows how many times, but it didn't change a thing.

I have made a new css file in which all the @media min-width is 502px but still, didn't make any change

  • Unless you specifically set no-cache headers, your browser may be caching the CSS. First try setting no-cache headers, then turn off page caching in your browser, then try again. – Brian Gottier Sep 13 '17 at 07:51
  • Also, look around here or Google for "cache busting", and implement it in your site. It's one of the essentials for modern websites. – Brian Gottier Sep 13 '17 at 08:03
  • While you are in development mode - this will help - https://stackoverflow.com/questions/8589760/difference-between-f5-ctrl-f5-and-click-or-refresh-button. This used to drive me crazy as well :) – TimBrownlaw Sep 13 '17 at 08:26
  • Your question is not specific enough - it can basically be everything. Please read: https://stackoverflow.com/help/mcve – Maciej Jureczko Sep 13 '17 at 08:31

1 Answers1

0

use the below tag in your view pages content="width=device-width, initial-scale=1"

Kalyan
  • 19
  • 6