• Hello,

    First off, amazing theme! Been looking something like this for a while and finally stumbled upon it!
    I’m a bit of a beginner to css/php coding and I have been trying to change the navigation type for this theme. I’m trying to get rid of the button and the slide bar and trying to make a simple inline navigation at the top of the page with the menu items on the right and header image/logo on the left.

    Thank in advance for any suggestions!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter pixydis

    (@pixydis)

    After bashing my head against the screen for a few days I’ve figured it out! ??
    I have another question, should I start another topic or carry on in this one?

    How would I go about making the header images in the list of posts clickable, and not just have the title of the post or the “read more” button a link? So the whole post area, including the header image, title/description and the button, being essentially one huge button.

    Thanks in advance!

    You’d normally want to open a new thread, yes ??

    Since we’re here, give this a try:

    First, you’ll want to set up a child theme.

    In that child theme, you’ll want to put a copy of Intergalactic’s content-home.php file.

    Open up that copy, and we’ll add a link around the content of your posts.

    Just inside the <article> tag, add this:

    <a class="big-post-link" href="<?php the_permalink() ?>"></a>

    This creates a link to the post. Now we can use CSS to make sure it spans across the entire image:

    .blog .hentry a.big-post-link {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 3;
        display: block;
    }

    That should do the trick – if you have any trouble, pop open a new thread and include what you have so far ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Is it possible to change the navigation type?’ is closed to new replies.