This topic has 1 reply, 2 voices, and was last updated 10 years, 8 months ago by Fem.
Viewing 2 posts - 1 through 2 (of 2 total)
Hi,
Here is the list of items for the website that needs to be addressed before I can take it live (http://winksbodyshop.immllcdev.com/):
Home Page
———
1. One one computer With IE 11, the video scrolls in front of the menu. On another it didn’t. Both were running Windows 7 and same release of IE 11. Just something to be aware of.
2. The hours in the footer is strange, too many Closed notices and what is the red dot next toSaturday and Sunday? It breaks the alignment. Actually it is the same in the Hours block below the top image.
3. Going to a mobile menu at between 940 – 958 pixels depending on the browser just seems wrong and unnecessary. Yes, a personal opinion.
4. The top three boxes overlay the image at wider screen sizes, at around 960px they clear and drop below the image. the result is all of a sudden you have this big visual gap. I think it would be better to just crop the image and always have them below the image. The other negative is it uses quite a bit of client horsepower to scale that image.
5. The top menu starts to scroll at around approximately 1015px. Why have it fixed at all?
6. The content doesn’t stretch all the way on some mobile phones (Google Nexus 6, HTC OR Microsoft), please check the attached image.
Thank you,
Lana
About Us Page
————-
1. The third and fourth images in the second row are stacked, not inline.
1) We have tested it on 2-3 PC’s with IE11 and I don’t find any such issues as of now. It might be a version problem or some addons problem i think. IE every time comes with plenty or errors for many of the sites 🙂
2) Go to business hours settings you have options to disable the today hours so that you can display only mon-fri and sat-sun only. Where is the dot next to the sat and sunday?
3) If you wish to customize the specific screen resolution then you can modify the widths in the media queries according to your requirement in responsive.css file located in the carzone/css/responsive.css
4) I don’t see any issue at my end. Kindly please create a screencast of the problem.
5) Its the nature of the fixedheader as it should appear only on scrolls. If you want to customize it you can customize that in sys_custom.js file in the below code.
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Fixed Header
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
var $aSelected = $('#wrapper').find('div');
if( $aSelected.is('#fixedheader') ){
var stickyHeaderTop = $('#fixedheader').offset().top;
$( window ).scroll(function(){
if( $( window ).scrollTop() > stickyHeaderTop ) {
$('#fixedheader').addClass("fixed-header");
if ( jQuery(window).width() > 1024) {
$('.logo img').css({'transform':'scale(0.71)'});
}
} else {
$('#fixedheader').removeClass("fixed-header");
if ( jQuery(window).width() > 1024) {
$('.logo img').css({'transform':'scale(1)'});
}
}
});
}
6) Sorry I checked the screenshot and the live demo there is nothing missing in the content which needs to be stretched but in my view you might be pointing to the logo text ‘shop’ which is coming down in 2nd line. Is that the thing you are pointing for not stretching or so?
7) About Us page the image is inline coz its in the same column. check the columns and content placement in your content editor.
Regards
Maqk
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.