• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] How to create a "welcome box" with a text message at the top of the first page?

Started by Lunar,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

LunarTopic starter

Hey,

How do I, with a sweet responsive design, create a small textbox which can be closed(with an X at the top right corner) containing a short welcome message in the style of "welcome to x, here you can find x and x, thank you". It would also be quite good for SEO purposes to have more text corresponding with META-desc. etc.

Thank you.
  •  

PHPVibe A.

Hi, tpl/main/home.php under

<div id="home-content" class="main-holder pad-holder span8 top10">


add your html, ex:
<div id="mywelcome" class="row-fluid" style="display:block; position:relative;">
Welcome to x, here you can find x and x, thank you
<span class="close-welcome"></span>
</div>


Css: (vibe.style.css for example):
.close-welcome {
background: url(../images/close_button.gif) no-repeat left top;
position: absolute;
right: 3px;
top: 3px;
z-index: 9999;
color: #666;
line-height: 17px;
cursor: pointer;
width: 17px;
height: 17px;
}


Js (phpvibe_app.js for example)

after:

//Kill ad
   $(".close-ad").click(function(){
$(this).closest(".adx").hide();
  });


add:
//Kill welcome
   $(".close-welcome").click(function(){
$(this).closest("#mywelcome").hide();
  });

LunarTopic starter

Excellent, worked like a charm.

Also, tried the new player and did indeed like it. Will post in separate thread for that tho.
  •  

 

Similar topics (7)

Important Announcement: PHPVibe Video Sharing CMS End of Life

Started by Marius P.


Replies: 1
Views: 32061

The problem of video viewing PHPVibe 5.0

Started by Nayn


Replies: 25
Views: 59394

The problem of text chatting PHPVibe 5.0.

Started by Nayn


Replies: 4
Views: 1649

embed video does not work on v5

Started by neospider69


Replies: 6
Views: 42209

Better Idea for PHPVibe v5 Channels page

Started by DeadFish


Replies: 2
Views: 1648

insite ads issue when selecting above/below video player location

Started by georgepanaitescu


Replies: 3
Views: 16589

Video that I've uploaded needs to have that value in admin to upload

Started by spirog


Replies: 4
Views: 1284