DealsPlazza Template Width.
- Posted by Omar Waage Sigurdsson (5) Offline
Hello.
I am thinking are there any change to change the width of the page so it's show same size in every desktop computers, and laptops, cause if I add advertisement in some size then she will be 230 on width in some desktops 430 in others and so on.
So can I change the size of the site permanently so it will show same size everywhere.
Thanks.
12 years 1 month ago #1
by Omar Waage Sigurdsson
I am thinking are there any change to change the width of the page so it's show same size in every desktop computers, and laptops, cause if I add advertisement in some size then she will be 230 on width in some desktops 430 in others and so on.
So can I change the size of the site permanently so it will show same size everywhere.
Thanks.
Please Log in or Create an account to join the conversation.
- Posted by ronysyz (191) Offline
Hello omariobros,
Sorry for your waiting time for our respond
About your case, you can try these tricks:
1. Please open deals_plazza/css/template.css.php and then please remove
and
2. in same file (deals_plazza/css/template.css.php), please add
3. After that, please go to this folder deals_plazza/css/ then please choose one of these files: 2520.min.css or 1920.min.css or 1560.min.css or 1200.min.css or 960.min.css or 720.min.css (depend on the width for your template that you want to do). For example: you want the width of your template is 960px, so please open 960.min.css and then please remove:
the codes in line1
also the code in line 3
4. After that, please change the name 960.min.css (based on the example at point 3 above) become to mywidth.css
5. Then you will need to refresh your site or maybe you will need to clear the cache and cookies at in browser
Good Luck
12 years 1 month ago #2
by ronysyz
Sorry for your waiting time for our respond
About your case, you can try these tricks:
1. Please open deals_plazza/css/template.css.php and then please remove
require('2520.min.css');
require('1920.min.css');
require('1560.min.css');
require('1200.min.css');
require('960.min.css');
require('720.min.css');
and
require('mobile.min.css');
2. in same file (deals_plazza/css/template.css.php), please add
require('mywidth.css');
3. After that, please go to this folder deals_plazza/css/ then please choose one of these files: 2520.min.css or 1920.min.css or 1560.min.css or 1200.min.css or 960.min.css or 720.min.css (depend on the width for your template that you want to do). For example: you want the width of your template is 960px, so please open 960.min.css and then please remove:
the codes in line1
@media only screen and (min-width: 981px) and (max-width: 1280px) {
also the code in line 3
}
4. After that, please change the name 960.min.css (based on the example at point 3 above) become to mywidth.css
5. Then you will need to refresh your site or maybe you will need to clear the cache and cookies at in browser
Good Luck
Please Log in or Create an account to join the conversation.
- Posted by mpasch (8) Offline
Hi,
That's killing the responsive layout, or maybe i am doing something wrong.
What i want is to change the max width, from 2520 to 1000 px can you please tell me how i can achieve that ?
Regards
11 years 11 months ago #3
by mpasch
That's killing the responsive layout, or maybe i am doing something wrong.
What i want is to change the max width, from 2520 to 1000 px can you please tell me how i can achieve that ?
Regards
Please Log in or Create an account to join the conversation.
- Posted by ronysyz (191) Offline
so.. you can remove
from deals_plazza/css/template.css.php
and then, you can edit 960.min.css in line 1
become to
Regards
11 years 11 months ago #4
by ronysyz
require('2520.min.css');
require('1920.min.css');
require('1560.min.css');
require('1200.min.css');
from deals_plazza/css/template.css.php
and then, you can edit 960.min.css in line 1
@media only screen and (min-width: 981px) and (max-width: 1280px) {
become to
@media only screen and (min-width: 981px) {
Regards
Please Log in or Create an account to join the conversation.
- Posted by mpasch (8) Offline
- Posted by ronysyz (191) Offline