Change mobile layout in responsive themeWhich is better to use, Magento's new responsive design or Waterlee...
Being asked to review a paper in conference one has submitted to
How to disable or uninstall iTunes under High Sierra without disabling SIP
What is a term for a function that when called repeatedly, has the same effect as calling once?
Why is my Contribution Detail Report (native CiviCRM Core report) not accurate?
Sometimes a banana is just a banana
Are small insurances worth it
Plagiarism of code by other PhD student
How to fix my table, centering of columns
Rationale to prefer local variables over instance variables?
In which way proportional valves are controlled solely by current?
1970s scifi/horror novel where protagonist is used by a crablike creature to feed its larvae, goes mad, and is defeated by retraumatising him
Create chunks from an array
What is the minimum amount of skill points per HD?
Specific Chinese carabiner QA?
Why doesn't "adolescent" take any articles in "listen to adolescent agonising"?
I can't die. Who am I?
Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?
How do I deal with being envious of my own players?
Formatting a table to look nice
Is every open circuit a capacitor?
Can an earth elemental drown/bury its opponent underground using earth glide?
Was it really inappropriate to write a pull request for the company I interviewed with?
Is there a limit on the maximum number of future jobs queued in an org?
3.5% Interest Student Loan or use all of my savings on Tuition?
Change mobile layout in responsive theme
Which is better to use, Magento's new responsive design or Waterlee boilerplate?Site optimisation, Specify image dimensions with responsive theme?Magento 1.9 Fast Loading Responsive ThemeCustom Theme Responsive/Mobile Disable and enable Full Siteproduct list not responsive within responsive themeWhich Magento Basic Theme Should I make Parent for Designing Responsive theme from scratchResponsive layout size on mobile?Magento iPhone Mobile ThemeMobile Theme not loading from mobile clientIn Magento 1.9, Want to change layout for Main category and sub-category Pages
In a responsive theme for v1.9, Which file should I edit to change the default layout to 1 column, in mobile browsers?
magento-1.9
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
In a responsive theme for v1.9, Which file should I edit to change the default layout to 1 column, in mobile browsers?
magento-1.9
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
1
I'm voting to close this question as off-topic because this is CSS question and should be asked in "stackoverflow.com".
– Adarsh Khatri
Apr 1 '16 at 2:43
add a comment |
In a responsive theme for v1.9, Which file should I edit to change the default layout to 1 column, in mobile browsers?
magento-1.9
In a responsive theme for v1.9, Which file should I edit to change the default layout to 1 column, in mobile browsers?
magento-1.9
magento-1.9
asked Mar 31 '16 at 22:15
yldzineryldziner
28818
28818
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 7 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
1
I'm voting to close this question as off-topic because this is CSS question and should be asked in "stackoverflow.com".
– Adarsh Khatri
Apr 1 '16 at 2:43
add a comment |
1
I'm voting to close this question as off-topic because this is CSS question and should be asked in "stackoverflow.com".
– Adarsh Khatri
Apr 1 '16 at 2:43
1
1
I'm voting to close this question as off-topic because this is CSS question and should be asked in "stackoverflow.com".
– Adarsh Khatri
Apr 1 '16 at 2:43
I'm voting to close this question as off-topic because this is CSS question and should be asked in "stackoverflow.com".
– Adarsh Khatri
Apr 1 '16 at 2:43
add a comment |
1 Answer
1
active
oldest
votes
Responsive designs do not care what device you are using.
It cares about display width/height (size).
If you need to change the layout/display according to the device, then you are moving away from responsive, and into 'separate design/layout per device' , which can each still be responsive, but that kinda defeats the point of having a responsive design.
You should be able to manipulate the page display via media queries. If you cannot do that, with media queries, for the page, on smaller devices, then there may be a need to restructure the HTML for the page, making it possible to manipulate with media queries in your css.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f108889%2fchange-mobile-layout-in-responsive-theme%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Responsive designs do not care what device you are using.
It cares about display width/height (size).
If you need to change the layout/display according to the device, then you are moving away from responsive, and into 'separate design/layout per device' , which can each still be responsive, but that kinda defeats the point of having a responsive design.
You should be able to manipulate the page display via media queries. If you cannot do that, with media queries, for the page, on smaller devices, then there may be a need to restructure the HTML for the page, making it possible to manipulate with media queries in your css.
add a comment |
Responsive designs do not care what device you are using.
It cares about display width/height (size).
If you need to change the layout/display according to the device, then you are moving away from responsive, and into 'separate design/layout per device' , which can each still be responsive, but that kinda defeats the point of having a responsive design.
You should be able to manipulate the page display via media queries. If you cannot do that, with media queries, for the page, on smaller devices, then there may be a need to restructure the HTML for the page, making it possible to manipulate with media queries in your css.
add a comment |
Responsive designs do not care what device you are using.
It cares about display width/height (size).
If you need to change the layout/display according to the device, then you are moving away from responsive, and into 'separate design/layout per device' , which can each still be responsive, but that kinda defeats the point of having a responsive design.
You should be able to manipulate the page display via media queries. If you cannot do that, with media queries, for the page, on smaller devices, then there may be a need to restructure the HTML for the page, making it possible to manipulate with media queries in your css.
Responsive designs do not care what device you are using.
It cares about display width/height (size).
If you need to change the layout/display according to the device, then you are moving away from responsive, and into 'separate design/layout per device' , which can each still be responsive, but that kinda defeats the point of having a responsive design.
You should be able to manipulate the page display via media queries. If you cannot do that, with media queries, for the page, on smaller devices, then there may be a need to restructure the HTML for the page, making it possible to manipulate with media queries in your css.
answered Apr 1 '16 at 2:20
ProxiBlueProxiBlue
8,76832653
8,76832653
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f108889%2fchange-mobile-layout-in-responsive-theme%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
I'm voting to close this question as off-topic because this is CSS question and should be asked in "stackoverflow.com".
– Adarsh Khatri
Apr 1 '16 at 2:43