• Resolved Karan.thakural89

    (@karanthakural89)


    Hi All,

    I’m very new in wordpress.I’ve a custom menu in left side bar on Page A. If i click on any item in custom menu in page A, it should take me to that text in Page A.

    How to do this. Do i need to use links in Appearance->Menus.

    Please guide me how to do this.

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Without going into a full HTML solution, let me try to help with some shortened pseudo-code that should help you.

    The Page will contain something along the lines of:

    <div class="paragraph" id="one">
    <h1>Heading One</h1>
    [some HTML]
    </div>
    <div class="paragraph" id="two">
    <h1>Heading Two</h1>
    [some HTML]
    </div>

    You’ll use some CSS to style it using

    .paragraph #one {[css here];}
    .paragraph #two {[css here];}

    Then as you say, you’ll setup Dashboard>Appearance>Menus items using the Links items with a URL of #one, #two etc.

    Thread Starter Karan.thakural89

    (@karanthakural89)

    I tried what u said.

    First of all, i gave id to the text. Then, i went into App->menus->link..
    and i gave href=”#id”

    It is working, but, it is taking me to the content of that text. For example, Text is Computers and the content of Computers is A machine or device.

    So, it is taking directly to me machine or device. In that case, what is happening, computers is being hidden, as it is in middle of the page.

    What i need is it should point me to Computers only not the content.

    Please help me on this.

    Thread Starter Karan.thakural89

    (@karanthakural89)

    Sorry, page was not properly loaded. It is working fine.

    I haven’t used CSS in this, Could you explain me the role of CSS in this?

    Only needed if you want to style the anchor. eg when you :hover, you might change the color and/or add some shading or underlining

    Thread Starter Karan.thakural89

    (@karanthakural89)

    okay.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Custom menu add anchor tags’ is closed to new replies.