• Resolved breecrowder

    (@breecrowder)


    Hi all:

    I’m wondering if it’s possible to add an image to the Pictorico slider that isn’t attached to a post or page (essentially I’m looking to replace the slider with a logo image, but keep the slider in case I want to revert back to using it). My site is here.

    The image I want to use will take up the full width and height of the slider, but will not link to anything.

    Thanks!

Viewing 4 replies - 16 through 19 (of 19 total)
  • @siobhan Bamber: Your slider tricks worked perfectly, but as you can see on my homepage, I’m now having sizing issues with my header.

    The header on your home page is set to a height of 525px and the theme is scaling your image so that it fits in with that set height. You could get around this by setting a lower height in your custom CSS:

    .home .has-thumbnail .entry-header {
        height: 400px;
    }

    Let me know if that works out for you.

    Also, the post titles appearing when you hover over their grid images seems to have disappeared. Any ideas why?

    This is due to the following snippet in your custom CSS:

    #main header.entry-header h1.entry-title {
        display: none;
    }

    Remove that snippet in order for the titles to appear again.

    Thread Starter breecrowder

    (@breecrowder)

    Changing the height of the entry header with CSS worked perfectly. Thank you!

    This snippet is used to remove the title of pages ON those pages:

    #main header.entry-header h1.entry-title {
        display: none;
    }

    So, you see my conundrum. I want the title removed from the pages themselves, but not from the grid view. Any ideas?

    Thanks so much for your help!

    Ah, I see! Could you please replace that snippet with the following?

    .has-thumbnail .entry-header .entry-title {
        display: none;
    }

    The above will only target titles on your individual pages, not on the home page.

    Thread Starter breecrowder

    (@breecrowder)

    Thank you!

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘Add Image (that isn't attached to a page or post) to the Slider’ is closed to new replies.