Close

1280 style

kava
6 years ago
#13991 Quote
Avatar
  • 17
Hi,

in new release I see that there is a new size of css file, 1280.
If I don't want to manage this size I can remove
Html.AppendCssFileParts("~/Themes/Lighthouse/Content/css/1280.css");

are there something else to do?
with only 1024.css greater screen size look good?

thanks
kava
Valentin
6 years ago
#13993 Quote
Avatar
  • Moderator
  • 172
kava wrote:
Hi,

in new release I see that there is a new size of css file, 1280.
If I don't want to manage this size I can remove
Html.AppendCssFileParts("~/Themes/Lighthouse/Content/css/1280.css");

are there something else to do?
with only 1024.css greater screen size look good?

thanks
kava



Greetings,

yes, this should be enough. Just do not forget the RTL file for this resolution, too.
However, I would advise you to just comment these lines out like so:

@*Html.AppendCssFileParts("~/Themes/Lighthouse/Content/css/1280.rtl.css");*@
@*Html.AppendCssFileParts("~/Themes/Lighthouse/Content/css/1280.css");*@


This way, if in the future you decide to use them again you can only remove the @* and *@ and the code will apply again.
Best Regards,

Valentin Kirov
Nop-Templates.com
kava
6 years ago
#14004 Quote
Avatar
  • 17
perfect!

thanks for reply.