Chunk. External link in description

  • Unknown's avatar

    Hi friend! Im using chunks theme. how can i put the text i have under my name Toño Garcia to external link?

    that text is http://www.tgarciafoto.com and i want to link it to same direction.

    thanks you!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar
  • Unknown's avatar

    Links are made with HTML, and you cannot add a link using CSS only (which is what the Custom Design upgrade offers you: CSS editing).

    There are a few ways to try to work around it. You could remove the tagline and put a custom menu item into your top navigation menu named ‘www.tgarciafoto.com’ and link to it that way. You may even be able re-position a link from the custom menu to move it into the right spot. The downside of that method would be that you would need to adjust the positioning numbers any time you changed the menu.

    Or you could add a link using HTML to a text widget and then try to use absolute positioning to move it into the header. That’s a common workaround suggested here in the forums, but each theme is different and it might be tricky with the Chunk theme.

  • Unknown's avatar

    Here’s an example for the Chunk theme that would move one of the custom menu items into the same spot the tagline sits now:

    .page-item-2 {
    background: yellow;
    position: absolute;
    top: -110px;
    left: -305px;
    }

    To make this work for your theme, you would need to add a new menu item, adjust the ‘.page-item-2’ class name in the CSS block, remove the yellow background, and adjust the top and left numbers.

  • The topic ‘Chunk. External link in description’ is closed to new replies.