How i make a shown footer at bottom page on laravel? [closed] - 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 3 years ago.
Improve this question
I make a footer. but to see the footer, i need to scroll it down. I want too see the footer without scrolling the page

Just look for the css-class of your footer and add
position: fixed;
bottom: 0;
to this class in one of your style sheets.
You can also directly add this in your HTML / blade-template by adding the attribute style="position:fixed;bottom:0" to the outmost container of your footer.

Related

remove scrolling from fixed position element [closed]

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 3 months ago.
Improve this question
code sandbox:- https://codesandbox.io/s/silly-wilson-mx6e2m?file=/index.html
how can I remove the scroll bar from this?
I checked your code, the fixed position element itself doesn't have scroll, what has scroll is <body>, so if understand your question correctly, you probably wanna add overflow: hidden; to your <body>:
body {
overflow: hidden;
}

slider same size as navigation in wordpress [closed]

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 would like the slideshow to have the width as the navigation menu and respond to different devices as the navigation width would.
Heres a link to the website in question http://test.amplifyevents.uk
Just change the width of rev_slider_1_1_wrapper to 100%? Your slider will be lining up with Home, not with the complete left of the nav-bar, but that can probably be fixed with a margin.
#rev_slider_1_1_wrapper { width: 100% }

Extend header to full width on Wordpress.com theme with custom CSS [closed]

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
I'm looking to extend the header image to be full width on a client's blog which is hosted on Wordpress.com, but it doesn't seem like the theme supports it natively. Something seems to be cropping the image automatically.
Is there any way this can be done using CSS?
http://ryanmangansitblog.com/
Thanks in advance!
this is caused because of the <p> element located in #hero .hero-content which has a max-width variable set in style.css, if you remove this rule #hero .hero-content p { max-width: 770px; } your problem should be solved, and the image should be shown full width.

Move this "Submit: Button [closed]

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
My website is http://boasish.com
I would like to know how I can move my "Submit" Button up like it is on this site http://www.theminimalists.com
Facebook
Twitter
Pinterest
RSS
change padding for to what you see below
.feature-area .feature-area-bottom {
padding: 0 0 9px;
}
Without any code in your question, this is a general answer.
You can change the position: attribute in css to either absolute or relative, and then use positioning commands such as top and left to relocate it.
Note that absolute elements are positioned in relation to their nearest position:relative; or position:absolute; div.
$('#sub1').css({'position':'absolute','top':'20px','left':'150px'});
jsFiddle Demo
References:
Is it possible to use position relative more than once in the same html page?

Margin right ignored in bourbon neat? [closed]

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
http://cdpn.io/ezIxj
I'm working on a portfolio site and would like each project box to span 4 columns on all layout sizes. Their width seems to be correct based on the column grid shown. But why do the right margins get ignored by the browser??
Because .project is indeed the last child in .project-container div.
I'm not massively familiar with Burbon - just switched those ( .project and .project-container ) classes around
so now .project:last-child properly applies to the last-child
Have a look: http://codepen.io/VarinderS/pen/kwgms

Resources