Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 days ago.
Improve this question
I changed the footer background color and now it shows through the button. Can you please help me fix it?
Sorry:) I'm using a SquareSpace template that has a color theme. However, you can customize the theme by adding CSS in the header of the page. I have used: footer, footer* { background-color: #FFF;} and this happened. Does this help? –
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
I've been trying to change my span class color to red without any success. It'll strike it through. What should I do? Thanks in advance.
This is the website link:
https://qcba.cloudaccess.host/
Im trying to change NBA color to red
try to add !important to the color value.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
I was wondering if anyone can help me align content to the bottom of the box.
I want to keep everything uniform and tidy. I want the author, date and thumbnail (please see highlighted screenshot) all to be level at the bottom of the box. 1
here is the link to the page
2
Any help would be really appreciated.
.eael-entry-footer
this needs to go at the bottom
You can add min-height to .eael-entry-title
.eael-entry-title { min-height: 85px }
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
I'm working on this website http://shapeofyou.lotusong.info/ and I am trying to make the boxes on the main page fill up the entire screen. How do I do that? I tried looking for any padding or margin but there wasn't any. Any help will be appreciated.
Thanks!
.container and .wppb-container have a max-width applied. Set them both to 100% and you'll be good.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
My website (skinstuff.nl) will not scroll. Could someone help me. I really can not find out why.
There are no postions in my body or html.
If you want to let it scroll horizontal dont set your width:100%
It doesn't scroll in height cause your content simply isn't high enough.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I'm not good with css.
I would delete this behavior:
When i pass my mouse overe an immage i obtain a black square , as you can see:
I want to delete this effect.
I would pass the mouse over the image and doesn't show nothing over the it.
thank you.
The css pseudo-class for when the mouse is hovering is :hover. I guess you should write something like:
.selector:hover{
background:none;
}