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 6 years ago.
Improve this question
I'm wanting to have it so that above the Nav is a large logo and slogan, and as the screen size shrinks below 768px the position of both elements changes.
So to start with it would be like so
and change to this
How would I go about this?
Drop the logo <img> twice... once in the top and once in the menu.
Then hide/show the appropriate --- use grid responsive utils: http://getbootstrap.com/css/#responsive-utilities
i.e.
.visible-xs on the inner menu logo
&
.hidden-xs on the top logo
(I'm assuming BS3 here.)
EDIT: See this JSFiddle
Related
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 13 days ago.
Improve this question
I'm studying this website and I noticed that on the mobile version of it the website isn't centered and some links are causing there to be a horizontal scroll rather than the rest of the link just going to the next line. How can I fix this?
This is the website in question: https://www.southmountaincc.edu/current-students/learning-resources/learning-center
[picture of webpage](https://i.stack.imgur.com/cO5Q6.jpg)
picture of webpage
I've tried to add in display: inline-block, and width: fit-content;
block-size: fit-content; but none have worked. The text in the ul will change but the links will stay the same.
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 1 year ago.
Improve this question
There is extra white space in the right of the body which appears only on mobile screens despite that i'm making overflow-x :hidden to the html and the body tags and all the page is the same width
html,body styles
//css file link
https://github.com/Jjemy/Landing-page/blob/main/src/App.scss
I think the max-width: 100vw, is affecting the width. Try taking it out as this may be the cause of the problem.
I've figured the cause out ..
I'm giving some images a position absolute and when i change it the problem disappears but this affect the images position,
is there any other option?
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 5 years ago.
Improve this question
I want a footer bar that sticks at the bottom of the page, which I currently use "position:fixed" issue is I have a div that I want to take up the whole area above the footer, the problem is though the bottom part of the div gets overlapped due to the position:fixed. When I remove position:fixed, the page requires scrolling.... can anyone give me an example of how to properly create a footer that stays at the bottom of the page without overlapping over elements and creating a scrollbar? I am using bootstrap 3.
Add a margin-bottom to the last element before the footer which is at least as large as the footer is high.
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 7 years ago.
Improve this question
I am stuck trying to fit my image grid into one page. One page means visible page or just adjusting the container of the grid so I can fit it on the screen accordingly.
Target Website: test.ebdesigns.us
Target Grid Starts With:
<aside id="listify_widget_taxonomy_image_grid-6" class="home-widget listify_widget_taxonomy_image_grid">
<div class="home-widget-section-title">
<h2 class="home-widget-title">Our Popular Categories</h2>
<h2 class="home-widget-description">Our Popular Categories</h2>
</div>
I am trying to display it all on one page. When I try to set the width of the individual grids to height: 150px nothing happens.
Could you please help me fit the grid in one page?
It looks like on that website it isn't the height that adjusts the grid size, but the padding. Try .entry-cover.has-image{padding:50px;} or something like that. I tried it in the dev tools and you'll also probably want to adjust your font size to like 20px or something.
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 9 years ago.
Improve this question
Working on a new design with three vertical columns.
The leftmost column is fixed
The main content column and the right sidebar are vertically scrollable by the browser's main scroll bar parallely.
When content of right sidebar reaches end than it stops scrolling while the main Content Column keeps on Scrolling.
Somewhat Similar to Yahoo's Layout
I guess what you need is this: http://andrewhenderson.me/tutorial/jquery-sticky-sidebar/
Have a look at the demo: http://andrewhenderson.me/wp-content/tutorials/jquery-sticky-content/index.html
If this doesnt serve your purpose, try googling with keywords 'sticky div' or 'sticky sidebar'. I am sure you'll find what you are looking for!