Log in

View Full Version : CSS Edit for Share Button


induslady
11-12-2013, 02:27 PM
Hello,

In this page,
http://www.indusladies.com/forums/married-life/237950-celebrating-first-wedding-anniversary.html#post3042509

Share button is hidden (PFA screen shot).
147139

Tried adjusting the z-index but still not working. Can anyone tell me how to fix this?

Thanks.

Lynne
11-12-2013, 03:52 PM
Since it's a CSS issue, the only way to fix it is to view the actual page using something like firebug. So, you will need to supply a login for us to see the problem.

nerbert
11-12-2013, 03:52 PM
You'll have to find

<ul class="vbseo_share_body">

and using either inline styling or in the css template change visibility to "visible", Then comment out the share link above it.

ikopylov
11-12-2013, 07:05 PM
Hello,

In this page,
http://www.indusladies.com/forums/married-life/237950-celebrating-first-wedding-anniversary.html#post3042509

Share button is hidden (PFA screen shot).
147139

Tried adjusting the z-index but still not working. Can anyone tell me how to fix this?

Thanks.

See this:
.vbseo_buttons .vbseo_links {
margin: 0;
padding: 10px;
position: absolute; <- new line
right: 0; <- new line
visibility: hidden;
width: auto;
}

.vbseo_share_body {
background: none repeat scroll 0 0 #EEEEEE;
border: 1px solid #DDDDDD;
border-radius: 5px;
box-shadow: 0 4px 7px;
position: relative; <- old is absolute
right: 0;
top: -100px; <- new line
visibility: hidden;
width: 280px;
z-index: 9000;
}

induslady
08-07-2015, 11:58 AM
Hello,
Hope this is useful for anyone searching for the same issue. I did the below and it worked:

.vbseo_buttons {
font-size: {vb:stylevar small_fontSize};
position: inherit; <- old value was relative
}