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 8 years ago.
Improve this question
I have attempted to make a table on my page scrollable when the browser width reaches a certain point, but my problem is that the CSS rules I implemented are not exclusively affecting the table, but also the images below the table. Can anyone tell me what is happening?
http://www.sunrisehousing.com/node/322
The problem is, very simpley, that your div.table-container contains more than just your table. If you close off that div after your table closing tag, you should see the results you are looking for.
I image that that your double opening table tags
<table><table...
Are also messing with how the HTML is being parsed. Given the part of your html that looks like this at the end of the table:
</p></table></div></div></div></div></div>
</div></div>
</div>
</div>
it looks like your IDE autofill is getting confused....
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 5 days ago.
Improve this question
In the picture you can see that part of "Schedule" is overlapping "Networking session". How do I stop this? It appears fine on computer screens but it appears like this on my phone. I do have different code written for screens with widths less than 415px.
what it looks like when one opens the website. Note the available space at the bottom of the table
At first, only the "schedule" would appear without the background. So I added position: relative but it still didn't work. How do I solve this problem? Any help will be appreciated.
[what it looks like after I added display: relative]
(https://i.stack.imgur.com/l5d81.png)
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 have a page where there's a header and a table. As the table is large, it is appearing in a completely new line. How can I fix this? Please help, thanks :)
That might the problem of your word processor putting it on a new line.
You might be able to solve this by giving two line breaks or making two separate tables on each page.
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 am making a website for a school project and i have this one same peace of html code pasted three times the first two follow the CSS fine but the last one doesn't even though they are all the exact same
an image of my html code
this is the code that i have pasted three times but for some reason the CSS doesn't apply to the last one so the page looks like this
an image of my output om my web page
I don't know much about HTML but from research on W3schools and on stack overflow i couldn't find a solution
For some reason you are opening an <ol> (in the middle of your first screenshot)
with a class named "list".
I'm pretty sure it's the reason why your third paragraph isn't acting normally. Close it or delete it and tell me if it worked !
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 4 years ago.
Improve this question
So I have an index page with products and when clicked it goes on another page with the prodcut itself ( i am extending the app.twig on the product page) and it takes all the elements from there to the product page. My question is there anyway to hide elements on another page if you have extended another page ?
I have discovered that if I create blocks than I call them in the page i dont want them empty it will erase them.
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 6 years ago.
Improve this question
What is the correct css for the list of results to show correctly? Here are the steps to view the results:
1) Navigate to http://mypubguide.com/good-pubs/east-region
2) Type "Hull" in the search input on the navigation bar and enter
3) Check: You see a list of results but the styling is incorrect, e.g., the anchor tag is not showing the text correctly and other elements look badly formatted.
How do I resolve this?
the line-height of the .gcse-container is 0px. Set it to 20px or remove the rule will solve your problem.