• I am wondering if there’s any way to place a static image (.png) OVER my slider to sit in the top left corner…

    Also, i haven’t tried changing any of the code yet, but is it possible to remove the ‘search wordpress’ huge bar at the top and replace it with my menu???

    i’m new to working with wordpress so any help would be greatly appreciated!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Link to site? Not sure what you mean by the Search? Are you logged in, with the WP Admin bar at the top maybe confusing you?

    Thread Starter jsg8989

    (@jsg8989)

    i haven’t worked on anything, but here: http://wordpress.org/themes/customizr – when you click preview, where it says “previewing another wordpress blog” – is it possible to remove this entire bar?

    OK, this is the Navbar. There’s lots of Navbar Snippets to look at.

    Thread Starter jsg8989

    (@jsg8989)

    Thanks for that!!

    any ideas about how to add an image that will sit over top of my slider and be constant while the images still ‘slide’ past (if this makes sense)?

    To reposition items, you need to start with:

    .element {
    position: relative;
    top: 0px;
    left: 0%;

    and then make adjustments. Use ‘-‘ to move up or left from start-position.

    For width dimensions, using % ensures your responsiveness is maintained.

    To put it over the Slider, you’ll also need to add a z-index:nn where nn needs to be higher than anything set on the slider. 100 would probably do it.

    So you just need to get an .element defined. Different ways, here’s my suggestion:
    Add a widget area after the header. Then setup a Text Widget that includes the HTML to display the Image. Then adjust the position as above.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘possible to add a static logo/image over my slider?’ is closed to new replies.