Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Anchor links! Can't seem to get them to work. I've created anchor links above every timeslot, with the name coming from the post-slug. I have tried using the anchor links, like this: http://ecodistrictssummit.com/tues-oct-23#fastcash-workshop-with-ioby

And I have tried using div IDs, like this: http://ecodistrictssummit.com/tues-oct-23#timeslot-1033

Every anchor moves you down the page, but never gets you past the first entry.

Any help would be much appreciated! It's a client's site that is sadly live. :/

Thanks!

share|improve this question
Anchor ID questions are more about HTML than WordPress. I'll migrate this over to Stack Overflow where it will be on-topic so you can get some help. – EAMann Oct 11 '12 at 22:49
A little HTML would be helpful. – iambriansreed Oct 11 '12 at 22:51

migrated from wordpress.stackexchange.com Oct 11 '12 at 22:49

2 Answers

Alan - My first try (using #timeslot-1033) resulted in what you described.

Then, suspecting a CSS-related issue, I set "Page Style" to "No Style" in Firefox, reloaded the page, and got to the Tuesday 4:00 place. (That's where it SHOULD take me, right? So I think my suspicion was correct.

I'd try stripping some declarations from my style sheet (.timeslot width = 100%?) and such.

HTH. Jeff Cohan

share|improve this answer
Thanks so much, Jeff! It was totally a CSS thing. It seems that when I was using empty <a> tags and the .timeslot divs, they didn't have set dimensions. When I used the program-details div as anchors, which has text inside of it, it worked! Merci! – Alan Oct 12 '12 at 2:21
You bet, Alan. Glad I saw your question. I had had a similar problem. – Jeff Cohan Oct 16 '12 at 2:31

I found a slightly different answer that worked well for me. I learned about id tags. So for example, I added an id to a heading tag:

<h3 id="game">Game Night</h3>

This worked great!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.