• Hi Guido, I need your help.

    I want to download just a picture and a title, maybe a date, on the home page. I want to insert the title of the event in the photo.

    Or redesign the widget and extract it to the location I created for this purpose.

    Thank you.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Guido

    (@guido07111975)

    Hi,

    I notice that you have already displayed a VS Event List widget at your homepage (event with title and image). To get the title inside your image, you must change a plugin file. I don’t recommend changing files of the plugin directly.

    You can use custom CSS to move title into the image, but this may not be looking very nice in every screen size. To try this, add this at page Extra CSS of the Customizer:

    @media screen and (min-width:768px) {
    	#vsel_widget-6 .vsel-image-info {margin-top:-110px; z-index:-1; position:relative;}
    	#vsel_widget-6 h3.vsel-meta-title {padding:0 10px;}
    	#vsel_widget-6 h3.vsel-meta-title a {color:#fff !important; text-shadow:1px 1px 2px #000;}
    }

    Guido

    Thread Starter Tangra

    (@tangra)

    Hello and thanks for the code. And that way it will work for me.

    Do you know how to put it under the pictures in the news?

    I am using this code but it is not working. I am getting all events.

    the_widget( 'vsel_widget' );

    Plugin Author Guido

    (@guido07111975)

    Hi,

    If you want to add this in your template file (code) directly, you can use the widget shortcode:

    echo do_shortcode( '[vsel-widget]' );
    Thread Starter Tangra

    (@tangra)

    Thanks it worked, I’ll have to play around to get it the way I want it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Display photo and title separately’ is closed to new replies.