[Solved] HTML and questions [closed]

You could do: p span { display: block; height: 1em; } However, you should put a class on that span, so it doesn’t affect everything else. EDIT: inline-block would probably be better. solved HTML and questions [closed]

[Solved] Create three “sections” for information [closed]

It would be good to learn Bootstrap for this, though it’s not mandatory. In Bootstrap you could just define it like this: <div class=”container”> <div class=”row”> <div class=”col-md-4″>Content 1</div> <div class=”col-md-4″>Content 2</div> <div class=”col-md-4″>Content 3</div> </div> </div> A basic way to do this without Bootstrap is here: http://jsfiddle.net/7Zs9f/1/ solved Create three “sections” for information [closed]

[Solved] how do I configure email on a contact form?

Seding an email directly with javascript (as it´s your tag) is not possible, but you can open the user mail client: window.open(‘mailto:[email protected]’); It´s possible to have a predetermined subject and body using these variables: window.open(‘mailto:[email protected]?subject=example_subject&body=example_body’); 3 solved how do I configure email on a contact form?

[Solved] How do this with only CSS

Using a solid background? If you are using a solid colour background, you could use a pseudo element to ‘cover it up’ .wrap { position: relative; height: 300px; width: 300px; } .img { height: inherit; width: inherit; background: url(http://lorempixel.com/300/300); position: relative; overflow: hidden; z-index: -2; } .img:before { content: “”; position: absolute; top: 100%; lefT: … Read more

[Solved] Create transparent HTML table [closed]

Here is a working snippet. border-spacing removes the spacing between cells tr:first-of-type targets only the first row to apply background color td:nth-child(odd) targets only the first column to make all fields bold table{ border-spacing:0; } tr:first-of-type{ background:lightgray; } td:nth-child(odd){ font-weight:bold; } th,td{ padding:5px; } <table> <tr> <td>Plan / Feature</td> <td>Standard</td> </tr> <tr> <td>Plan Type</td> <td>Annual</td> … Read more

[Solved] Issue with IFRAME? [closed]

Do you mean you want to get rid of the frames? Simple solution is to use `style´: <iframe src=”https://stackoverflow.com/questions/11109229/…” style=”border: 0px”></iframe> If your doctype is HTML5, you can also embed your iframe content seamlessly into the DOM (=”transparent” iframe import): <iframe src=”https://stackoverflow.com/questions/11109229/…” seamless=”seamless” style=”border: 0px;”></iframe> I wouldn’t expect all browsers to support that yet though. … Read more

[Solved] Add CSS to existing website

As per your clarification.. this is how you can do it.. <html> <?php $homepage = file_get_contents(‘https://auspuff-schuelerzeitung.de/’); echo $homepage; //you can strip the closing <html> if it bothers.. ?> <link rel=”stylesheet” href=”https://stackoverflow.com/questions/40294645/my_changes.css” type=”text/css”/> </html> 5 solved Add CSS to existing website

[Solved] Javascript functions and IE error addEventListener JQuery

IE browsers up to IE8 do not support addEventListener (I’m assuming you meant the latest version you have when you said Internet Explorer Last version). attachEvent is the IE equivalent (well, not exactly equivalent). If your target browser is only IE8, you can just replace the addEventListeners with attachEvent calls, but a better option (seeing … Read more

[Solved] WordPress Woocommerce theme’s Header is not transparent like in the original demo

First, I think you need to check options in wp-admin > appearance > customize. Sometime themes provide few options regarding Header there. I have checked it and it looks like your “.content” div is not starting from top of the body. Your “header” is already transparent. If you have still an issue, let me check … Read more

[Solved] How to POSITION my Marker to Always Follow the Slider-Handle?

Youc can set a position to image using Jquery See fiddle //set a begining position to img var slider = $(“.slider”)[0]; var sliderPos = slider.value / slider.max; var pixelPostion = slider.clientWidth * sliderPos; $(“.img”).css(“left”,pixelPostion-7 + “px”); //set a position to img when slide move $(document).on(‘input’, ‘.slider’, function() { var slider = $(“.slider”)[0]; var sliderPos = … Read more