We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

need help [Answered] | Forum

Topic location: Forum home » Support » General Questions
zack
zack Oct 28 '15

My problems I believe is simple

First thing yes, I am having trouble with the graphics of my video shows when they are embedded from youtube .


Video issues

http://305vibe.com/video

Secondly one of my sign in pages by default oxwall have pictures that comes with the theme I would like those pictures and were it says site name remove.


 I am currently using a grey box that fades in or out. I don't want any pictures or site name to show. I just want my header up top the sign in box next to it and, the text with the join option beneath.


 http://305vibe.com/sign-in?back-uri=my-profile.








The Forum post is edited by Taissa Nov 2 '15
zack
zack Oct 28 '15

my apologies I thought I was still using the grey box to cover the pictures but the theme default pictures is still showing by fading in and out

Darryl B Leader
Darryl B Oct 28 '15
This will hide the "Site Name"

.ow_page_wrap .ow_sign_in_cont .ow_sign_in_wrap h2 {
    width: 0;}

This will hide the slideshow

.ow_signin-slideshow::after {
    display: none;}
You will just need to remove the fading box.


Darryl B Leader
Darryl B Oct 28 '15
This hides your gray fading box.

.ow_signin-slideshow, .ow_signin-slideshow::after {    display: none;}

Inspect Element is a wonderful tool for css fixes.
Darryl B Leader
Darryl B Oct 28 '15
As for the video. Looks like you are using the Venus theme. Have you updated to the latest version? Looks like you have an older layout. I would also recommend the "SPVdeio Lite" plugin. You can set the thumbnail resolution that will display.
Darryl B Leader
Darryl B Oct 28 '15
This will get the background image to fit the width of the screen, and re-position the sign in box a little. As well as take care of that vertical scroll that cause the back to top to show. I've attached a screen shot of what all of these fixes will look like.

.ow_page_wrap .ow_sign_in_cont, .ow_page_wrap .ow_sign_in_cont
{

    background-size: 100% 40%;

}
.ow_page_wrap .ow_sign_in_cont .ow_sign_in_wrap form .ow_box {    left: 30px;
}
.ow_page_wrap .ow_sign_in_cont .ow_sign_in_wrap form .ow_connect_buttons {
    left: 30px;    position: relative;}
.ow_sign_in_wrap {
    overflow-x: hidden;    overflow-y: hidden;}


The Forum post is edited by Darryl B Oct 29 '15
Attachments:
  Zack.jpg (142Kb)
zack
zack Oct 29 '15

Thanks Darryl unfortunately I am a newbie to oxwall and even though you explain what to do I don't know how to do it.


Where can I find these lines of coding?


Do I delete the old coding and copy and paste in the coding you provided me?


The attachment you provided me is exactly what I want


I have little to no experience in css or where to find  these lines. Is there a way you c

an assist me?

Darryl B Leader
Darryl B Oct 29 '15
I've put it all in one group. Just copy all of the custom css below, go to admin panel/appearance/customize, and click on the css tab at the top of "customize" page. Scroll down the page. You will see an empty box that says "Edit CSS" at the top. Paste the code below there, and click on save at the bottom of the page. This is where you put all of your custom css changes.

.ow_page_wrap .ow_sign_in_cont, .ow_page_wrap .ow_sign_in_cont
{

    background-size: 100% 40%;

}
.ow_page_wrap .ow_sign_in_cont .ow_sign_in_wrap form .ow_box {  

     left: 30px;
}
.ow_page_wrap .ow_sign_in_cont .ow_sign_in_wrap form .ow_connect_buttons {
    left: 30px;    position: relative;

}
.ow_sign_in_wrap {
    overflow-x: hidden;    overflow-y: hidden;

}

.ow_signin-slideshow, .ow_signin-slideshow::after {  

     display: none;

}

.ow_page_wrap .ow_sign_in_cont .ow_sign_in_wrap h2 {
    width: 0;

}

.ow_signin-slideshow::after {
    display: none;
}
The Forum post is edited by Darryl B Oct 29 '15
zack
zack Oct 30 '15
wow Darryl you was right. It worked . Thank you so much
Darryl B Leader
Darryl B Oct 31 '15
Your welcome.