46 reputation
10
bio website
location
age
visits member for 8 months
seen May 17 at 2:18
stats profile views 41

Oct
24
comment Closing a database connection from a button in Java
Sometimes it's just the smallest thing... Thank you.
Oct
24
asked Closing a database connection from a button in Java
Oct
24
comment Can't get Java GUI Layout to Show Correctly
thank you so much!
Oct
24
accepted Can't get Java GUI Layout to Show Correctly
Oct
24
comment Can't get Java GUI Layout to Show Correctly
Awesome! That worked for the layout, thank you. Can anyone shed some light on the button listener issue? That's the last problem I'm having.
Oct
24
awarded  Commentator
Oct
24
comment Can't get Java GUI Layout to Show Correctly
To add to this question, I am also having trouble with my action event listeners for my buttons. If I do something like .addActionEventListener(this); then I get an error, but if I use .addActionEventListener(null); then they don't work at all. What should I be using to get them to work properly?
Oct
24
asked Can't get Java GUI Layout to Show Correctly
Sep
20
comment Bootstrap .dropdown li background color
perfect, thank you.
Sep
20
accepted Bootstrap .dropdown li background color
Sep
19
asked Bootstrap .dropdown li background color
Sep
18
awarded  Scholar
Sep
18
comment Anchors not working on some pages
The most recent fix worked perfectly. Thank you so much for sticking with me and helping me out.
Sep
18
accepted Anchors not working on some pages
Sep
18
comment Anchors not working on some pages
If I implement that fix, it works perfectly for all other pages, with a minor delay of course. But now it doesn't work properly from law.html itself. It places the title about twice as low as it should.
Sep
17
awarded  Editor
Sep
17
revised Anchors not working on some pages
added 441 characters in body
Sep
17
comment Anchors not working on some pages
So I achieved the same functionality with the following script: <script> $(document).ready(function(){ var shiftWindow = function() { scrollBy(0, -50) }; if (location.hash) shiftWindow(); window.addEventListener("hashchange", shiftWindow); }); </script> Still cannot get it to work from other pages than law.html
Sep
17
comment Anchors not working on some pages
I would also like to ask, is there an easier way around this problem? I'm using Bootstrap and I can't believe that they haven't accounted for this problem. If I could get my anchors to work without some weird script that is just causing more problems, I would love to.
Sep
17
comment Anchors not working on some pages
It looks like this is happening because it only applies the fix when the hash value "changes". I need it to work no matter what whether you're going form one hash to another, from one hash to the same hash, or from no hash at all.