CSS text on overlaySet cellpadding and cellspacing in CSS?Convert HTML + CSS to PDF with PHP?Vertically align text next to an image?How do I give text or an image a transparent background using CSS?How to disable text selection highlighting?Is there a CSS parent selector?When to use margin vs padding in CSSChange an HTML5 input's placeholder color with CSSHow do I vertically center text with CSS?Is it possible to apply CSS to half of a character?

Why are electrically insulating heatsinks so rare? Is it just cost?

How to prevent "they're falling in love" trope

Can I use a neutral wire from another outlet to repair a broken neutral?

Why is consensus so controversial in Britain?

Emailing HOD to enhance faculty application

Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?

What is the intuition behind short exact sequences of groups; in particular, what is the intuition behind group extensions?

Intersection of two sorted vectors in C++

How is it possible to have an ability score that is less than 3?

How can I make my BBEG immortal short of making them a Lich or Vampire?

Theorems that impeded progress

How to model explosives?

What reasons are there for a Capitalist to oppose a 100% inheritance tax?

Facing a paradox: Earnshaw's theorem in one dimension

Why does Kotter return in Welcome Back Kotter

I Accidentally Deleted a Stock Terminal Theme

What do you call someone who asks many questions?

What is the most common color to indicate the input-field is disabled?

Why is the 'in' operator throwing an error with a string literal instead of logging false?

Will google still index a page if I use a $_SESSION variable?

Is it unprofessional to ask if a job posting on GlassDoor is real?

Why doesn't H₄O²⁺ exist?

Brothers & sisters

Can a virus destroy the BIOS of a modern computer?



CSS text on overlay


Set cellpadding and cellspacing in CSS?Convert HTML + CSS to PDF with PHP?Vertically align text next to an image?How do I give text or an image a transparent background using CSS?How to disable text selection highlighting?Is there a CSS parent selector?When to use margin vs padding in CSSChange an HTML5 input's placeholder color with CSSHow do I vertically center text with CSS?Is it possible to apply CSS to half of a character?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















So I have this code which plays a video on my website.



When I run it locally the video is fine and the text is over it



When I upload it the code is below it?



I used z-index 2? to bring the text to the front



On the website it looks like this
https://gyazo.com/b44cff259296ad76b3542880203bed14
Locally it looks like this - https://gyazo.com/448e05e2e55cc904860cc2c62f0f33cc



So I'm very new to stack overflow and cannot get my head around the CTRL + K
So here are 2 ghostbin links. (Sorry)
HTML Code - https://ghostbin.com/paste/87ctg
CSS Code - https://ghostbin.com/paste/cwnsf






body 
background-color: #000000;
padding: 0px;
margin: 0px;
font-family: "Futura Hv BT";
overflow-x: hidden;


.v-header
height: 100vh;
display: flex;
align-items: center;
color: white;


.container
padding-left: 1rem;
padding-right: 1rem;
margin: auto;
text-align: center;


.fullscreen-video-wrap
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: hidden;


.fullscreen-video-wrap video
min-width: 100%;
min-height: 100%;


.header-content {
z-index: 2;

<header class="v-header container">
<div class="fullscreen-video-wrap">
<video src="https://gazzy.xyz/video.mp4" autoplay="true" loop="true">

</video>
</div>

<div class="header-content">
<h1>gazzy</h1>
<a target="_blank" href="https://steamcommunity.com/id/fovon/">steam</a>
<a target="_blank" href="https://discord.gg/Gb5nrNN">discord server</a>
<button type="button" onclick="copyToClipboard('gazzy#1004'); alert('discord username copied to clipboard')">discord</button>
</div>


</header>












share|improve this question
























  • My guess is that your local version is running a slightly different version of the code than the one you have on the live website. Maybe you have some per-processor that tidy the code when you pack it for deployment?

    – Guy Yogev
    Mar 8 at 23:00











  • Hello Gazzy. Welcome to SO. Please put the code into the post.

    – Olafant
    Mar 8 at 23:10











  • please include any js that you are using

    – Rachel Gallen
    Mar 8 at 23:52











  • Your code seems fine. Try hard refreshing your browser by SHIFT + F5. It's probably getting an old cached version of the CSS file.

    – perellorodrigo
    Mar 9 at 0:15

















0















So I have this code which plays a video on my website.



When I run it locally the video is fine and the text is over it



When I upload it the code is below it?



I used z-index 2? to bring the text to the front



On the website it looks like this
https://gyazo.com/b44cff259296ad76b3542880203bed14
Locally it looks like this - https://gyazo.com/448e05e2e55cc904860cc2c62f0f33cc



So I'm very new to stack overflow and cannot get my head around the CTRL + K
So here are 2 ghostbin links. (Sorry)
HTML Code - https://ghostbin.com/paste/87ctg
CSS Code - https://ghostbin.com/paste/cwnsf






body 
background-color: #000000;
padding: 0px;
margin: 0px;
font-family: "Futura Hv BT";
overflow-x: hidden;


.v-header
height: 100vh;
display: flex;
align-items: center;
color: white;


.container
padding-left: 1rem;
padding-right: 1rem;
margin: auto;
text-align: center;


.fullscreen-video-wrap
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: hidden;


.fullscreen-video-wrap video
min-width: 100%;
min-height: 100%;


.header-content {
z-index: 2;

<header class="v-header container">
<div class="fullscreen-video-wrap">
<video src="https://gazzy.xyz/video.mp4" autoplay="true" loop="true">

</video>
</div>

<div class="header-content">
<h1>gazzy</h1>
<a target="_blank" href="https://steamcommunity.com/id/fovon/">steam</a>
<a target="_blank" href="https://discord.gg/Gb5nrNN">discord server</a>
<button type="button" onclick="copyToClipboard('gazzy#1004'); alert('discord username copied to clipboard')">discord</button>
</div>


</header>












share|improve this question
























  • My guess is that your local version is running a slightly different version of the code than the one you have on the live website. Maybe you have some per-processor that tidy the code when you pack it for deployment?

    – Guy Yogev
    Mar 8 at 23:00











  • Hello Gazzy. Welcome to SO. Please put the code into the post.

    – Olafant
    Mar 8 at 23:10











  • please include any js that you are using

    – Rachel Gallen
    Mar 8 at 23:52











  • Your code seems fine. Try hard refreshing your browser by SHIFT + F5. It's probably getting an old cached version of the CSS file.

    – perellorodrigo
    Mar 9 at 0:15













0












0








0








So I have this code which plays a video on my website.



When I run it locally the video is fine and the text is over it



When I upload it the code is below it?



I used z-index 2? to bring the text to the front



On the website it looks like this
https://gyazo.com/b44cff259296ad76b3542880203bed14
Locally it looks like this - https://gyazo.com/448e05e2e55cc904860cc2c62f0f33cc



So I'm very new to stack overflow and cannot get my head around the CTRL + K
So here are 2 ghostbin links. (Sorry)
HTML Code - https://ghostbin.com/paste/87ctg
CSS Code - https://ghostbin.com/paste/cwnsf






body 
background-color: #000000;
padding: 0px;
margin: 0px;
font-family: "Futura Hv BT";
overflow-x: hidden;


.v-header
height: 100vh;
display: flex;
align-items: center;
color: white;


.container
padding-left: 1rem;
padding-right: 1rem;
margin: auto;
text-align: center;


.fullscreen-video-wrap
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: hidden;


.fullscreen-video-wrap video
min-width: 100%;
min-height: 100%;


.header-content {
z-index: 2;

<header class="v-header container">
<div class="fullscreen-video-wrap">
<video src="https://gazzy.xyz/video.mp4" autoplay="true" loop="true">

</video>
</div>

<div class="header-content">
<h1>gazzy</h1>
<a target="_blank" href="https://steamcommunity.com/id/fovon/">steam</a>
<a target="_blank" href="https://discord.gg/Gb5nrNN">discord server</a>
<button type="button" onclick="copyToClipboard('gazzy#1004'); alert('discord username copied to clipboard')">discord</button>
</div>


</header>












share|improve this question
















So I have this code which plays a video on my website.



When I run it locally the video is fine and the text is over it



When I upload it the code is below it?



I used z-index 2? to bring the text to the front



On the website it looks like this
https://gyazo.com/b44cff259296ad76b3542880203bed14
Locally it looks like this - https://gyazo.com/448e05e2e55cc904860cc2c62f0f33cc



So I'm very new to stack overflow and cannot get my head around the CTRL + K
So here are 2 ghostbin links. (Sorry)
HTML Code - https://ghostbin.com/paste/87ctg
CSS Code - https://ghostbin.com/paste/cwnsf






body 
background-color: #000000;
padding: 0px;
margin: 0px;
font-family: "Futura Hv BT";
overflow-x: hidden;


.v-header
height: 100vh;
display: flex;
align-items: center;
color: white;


.container
padding-left: 1rem;
padding-right: 1rem;
margin: auto;
text-align: center;


.fullscreen-video-wrap
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: hidden;


.fullscreen-video-wrap video
min-width: 100%;
min-height: 100%;


.header-content {
z-index: 2;

<header class="v-header container">
<div class="fullscreen-video-wrap">
<video src="https://gazzy.xyz/video.mp4" autoplay="true" loop="true">

</video>
</div>

<div class="header-content">
<h1>gazzy</h1>
<a target="_blank" href="https://steamcommunity.com/id/fovon/">steam</a>
<a target="_blank" href="https://discord.gg/Gb5nrNN">discord server</a>
<button type="button" onclick="copyToClipboard('gazzy#1004'); alert('discord username copied to clipboard')">discord</button>
</div>


</header>








body 
background-color: #000000;
padding: 0px;
margin: 0px;
font-family: "Futura Hv BT";
overflow-x: hidden;


.v-header
height: 100vh;
display: flex;
align-items: center;
color: white;


.container
padding-left: 1rem;
padding-right: 1rem;
margin: auto;
text-align: center;


.fullscreen-video-wrap
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: hidden;


.fullscreen-video-wrap video
min-width: 100%;
min-height: 100%;


.header-content {
z-index: 2;

<header class="v-header container">
<div class="fullscreen-video-wrap">
<video src="https://gazzy.xyz/video.mp4" autoplay="true" loop="true">

</video>
</div>

<div class="header-content">
<h1>gazzy</h1>
<a target="_blank" href="https://steamcommunity.com/id/fovon/">steam</a>
<a target="_blank" href="https://discord.gg/Gb5nrNN">discord server</a>
<button type="button" onclick="copyToClipboard('gazzy#1004'); alert('discord username copied to clipboard')">discord</button>
</div>


</header>





body 
background-color: #000000;
padding: 0px;
margin: 0px;
font-family: "Futura Hv BT";
overflow-x: hidden;


.v-header
height: 100vh;
display: flex;
align-items: center;
color: white;


.container
padding-left: 1rem;
padding-right: 1rem;
margin: auto;
text-align: center;


.fullscreen-video-wrap
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: hidden;


.fullscreen-video-wrap video
min-width: 100%;
min-height: 100%;


.header-content {
z-index: 2;

<header class="v-header container">
<div class="fullscreen-video-wrap">
<video src="https://gazzy.xyz/video.mp4" autoplay="true" loop="true">

</video>
</div>

<div class="header-content">
<h1>gazzy</h1>
<a target="_blank" href="https://steamcommunity.com/id/fovon/">steam</a>
<a target="_blank" href="https://discord.gg/Gb5nrNN">discord server</a>
<button type="button" onclick="copyToClipboard('gazzy#1004'); alert('discord username copied to clipboard')">discord</button>
</div>


</header>






html css






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 9 at 4:54









Guy Yogev

670313




670313










asked Mar 8 at 22:28









GazzyGazzy

1




1












  • My guess is that your local version is running a slightly different version of the code than the one you have on the live website. Maybe you have some per-processor that tidy the code when you pack it for deployment?

    – Guy Yogev
    Mar 8 at 23:00











  • Hello Gazzy. Welcome to SO. Please put the code into the post.

    – Olafant
    Mar 8 at 23:10











  • please include any js that you are using

    – Rachel Gallen
    Mar 8 at 23:52











  • Your code seems fine. Try hard refreshing your browser by SHIFT + F5. It's probably getting an old cached version of the CSS file.

    – perellorodrigo
    Mar 9 at 0:15

















  • My guess is that your local version is running a slightly different version of the code than the one you have on the live website. Maybe you have some per-processor that tidy the code when you pack it for deployment?

    – Guy Yogev
    Mar 8 at 23:00











  • Hello Gazzy. Welcome to SO. Please put the code into the post.

    – Olafant
    Mar 8 at 23:10











  • please include any js that you are using

    – Rachel Gallen
    Mar 8 at 23:52











  • Your code seems fine. Try hard refreshing your browser by SHIFT + F5. It's probably getting an old cached version of the CSS file.

    – perellorodrigo
    Mar 9 at 0:15
















My guess is that your local version is running a slightly different version of the code than the one you have on the live website. Maybe you have some per-processor that tidy the code when you pack it for deployment?

– Guy Yogev
Mar 8 at 23:00





My guess is that your local version is running a slightly different version of the code than the one you have on the live website. Maybe you have some per-processor that tidy the code when you pack it for deployment?

– Guy Yogev
Mar 8 at 23:00













Hello Gazzy. Welcome to SO. Please put the code into the post.

– Olafant
Mar 8 at 23:10





Hello Gazzy. Welcome to SO. Please put the code into the post.

– Olafant
Mar 8 at 23:10













please include any js that you are using

– Rachel Gallen
Mar 8 at 23:52





please include any js that you are using

– Rachel Gallen
Mar 8 at 23:52













Your code seems fine. Try hard refreshing your browser by SHIFT + F5. It's probably getting an old cached version of the CSS file.

– perellorodrigo
Mar 9 at 0:15





Your code seems fine. Try hard refreshing your browser by SHIFT + F5. It's probably getting an old cached version of the CSS file.

– perellorodrigo
Mar 9 at 0:15












1 Answer
1






active

oldest

votes


















0














Im also new to web dev, however i figured that if you try margins around the text div it might work? Maybe try:
mergin-top:20px;
and see how that edits the text, if not try going through the steps here: https://www.w3schools.com/howto/howto_css_image_text.asp
or try this video if you hate reading like me:
https://www.youtube.com/watch?v=edCuCED3Zmo






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55071864%2fcss-text-on-overlay%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Im also new to web dev, however i figured that if you try margins around the text div it might work? Maybe try:
    mergin-top:20px;
    and see how that edits the text, if not try going through the steps here: https://www.w3schools.com/howto/howto_css_image_text.asp
    or try this video if you hate reading like me:
    https://www.youtube.com/watch?v=edCuCED3Zmo






    share|improve this answer



























      0














      Im also new to web dev, however i figured that if you try margins around the text div it might work? Maybe try:
      mergin-top:20px;
      and see how that edits the text, if not try going through the steps here: https://www.w3schools.com/howto/howto_css_image_text.asp
      or try this video if you hate reading like me:
      https://www.youtube.com/watch?v=edCuCED3Zmo






      share|improve this answer

























        0












        0








        0







        Im also new to web dev, however i figured that if you try margins around the text div it might work? Maybe try:
        mergin-top:20px;
        and see how that edits the text, if not try going through the steps here: https://www.w3schools.com/howto/howto_css_image_text.asp
        or try this video if you hate reading like me:
        https://www.youtube.com/watch?v=edCuCED3Zmo






        share|improve this answer













        Im also new to web dev, however i figured that if you try margins around the text div it might work? Maybe try:
        mergin-top:20px;
        and see how that edits the text, if not try going through the steps here: https://www.w3schools.com/howto/howto_css_image_text.asp
        or try this video if you hate reading like me:
        https://www.youtube.com/watch?v=edCuCED3Zmo







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 9 at 0:01









        MagiixkMagiixk

        13




        13





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55071864%2fcss-text-on-overlay%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

            Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

            How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page