Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I am creating a web landing page with the use of flex-box-properties. It is working fine on all other browsers except the chrome.this div .container-fluid.mian-top-bar is overlapped by the .section-second-banner.flxx section and its video.
Set height for the top container-fluid e.g. height:100px.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 hours ago.
Improve this question
I am a beginner to coding and trying to work on a carousel. See the reference below for the same. The requirement is the carousel height should be fixed and need to change as per the content or image size used "div".
Based on the highest content and image carousel height will be fixed. But, the content and image is not aligning vertically center.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
enter image description here
I want to make my navbar attach to the top how is this possible?
Use CSS property position:fixed on your navbar in the CSS.
And you are good to go.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I want white section and background image section in same row. Like attached image
You can use clip path property in CSS.
For more Info Refer this article:
https://css-tricks.com/clipping-masking-css/
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I need to hide the vertical scrollbar on my website (without disable scrolling), in particular in mobile devices (touch scrolling).
I tried to achieve this by css, but i haven't good result, in particular with old browsers.
Original answer is
Hiding the scrollbar on an HTML page
Disable it on desktop is the same on mobile.
Hope this help.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Please take a look at http://michalpodkowa.pl
When you hover over thumbnails in last column, images after transition are jumping a bit, especially in firefox. Any ideas how to fix it?
Try this:
Add following script at the end of your page.
<script>
$("#gallery").css("width",parseInt($(window).width())+0.1);
</script>