Jump To 플러그인

Page Jump

아직은 테스트 용입니다. 죄송~ ^^;

4 Comments

  1. chaoskcuf wrote:

    와우~! 이제 이런거까지 만드는구나.
    오랫만에 와보네~

  2. she wrote:

    ^^; 그냥 취미삼아서 했는데 잘한 건지는 전혀 모르겠네요. 그나저나 먼저 찾아오시게 하니 염치가 없네요. 으휴; 방문 고마워요~

  3. Volker Zimmermann wrote:

    Hi, I really like your work on the jumpto plugin, it is very useful. I have some questions, though:

    1. How do I customize the layout of the "jump to" box that is inserted? I would like to have a layout that is a little more bare-bones.

    2. How do I get rid of the numbers in the Drop-down menu? I'd like to have just the page titles.

    3. Is there any other way to insert the links list than an "OL" list? I would like to have a horizontal layout for that option.

    Thanks in advance!

  4. she wrote:

    hi. thanks^^

    1. Using CSS will be good. but i couldn't catch your exact meaning. ^^;;
    2. remove {$key} : at 127 line
    3. if you can handle CSS, I suggest using UL list and CSS. But following is simple horizontal links list.
      1. find <ol> and replace as <p> at 87 line.
      2. find </ol> and replace as </p> at 133 line.
      3. fine <li'.$current.'><a href="'; and replace as <a'.$current.' href="'; at 111 line.
      4. find $current_check</li> and replace as empty space like &nbsp; at 128 line.
      5. and you can handle style through CSS for example...
        .pagelinks a.current_page {color:red; font-weight:bold;}
        .pagelinks a {color:black;}