Pyrate.Ned
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to hide a video after it stops playing (PHP & Javascript)Why don’t you host the video yourself? Then you could hook the event using javascript.
Forum: Fixing WordPress
In reply to: How to hide a video after it stops playing (PHP & Javascript)Sorry dear but because it is in a iframe which is not hosted on your site it makes it impossible to hooked an event… unless cincopa api has that functionality build into it. I just did a job kinda like this and used youtube iframe api to hook the video end event. I did a search for cincopa api for videos but didn’t find much.
Forum: Fixing WordPress
In reply to: How to hide a video after it stops playing (PHP & Javascript)disregard that last code, though the video was hosted on your site.
Forum: Fixing WordPress
In reply to: How to hide a video after it stops playing (PHP & Javascript)right now the video loops is there away to turn that off?
Forum: Fixing WordPress
In reply to: How to hide a video after it stops playing (PHP & Javascript)link to the page with the video on it?
Forum: Fixing WordPress
In reply to: How to hide a video after it stops playing (PHP & Javascript)Are you hosting the video? or is it embedded from youtube?
Forum: Fixing WordPress
In reply to: Remove Header and Menu from a single page@jheuser and ozabro,
You shouldn’t try to hijack someone else’s post, you should go start your own post.Forum: Fixing WordPress
In reply to: How to use if else in cssGlad you got it working.
Forum: Fixing WordPress
In reply to: How to use if else in cssCan you please post what you get when you echo
of_get_option('contentbg');
and
$bg2;
Thanks
Forum: Fixing WordPress
In reply to: How to use if else in csswhat happens if you echo of_get_option(‘contentbg’);
Forum: Fixing WordPress
In reply to: How to use if else in cssDo you have a link to your site? what is $bg2 equal to? at the very top of your header put <?php echo “bg2= “.$bg2; ?> and see what it spits out
Forum: Fixing WordPress
In reply to: How to Make my Logo BiggerWell hello there, the problem is on line 183 of your main.css. You will find this line of code there
.main_logo { max-width: 390px; }
that line is telling your logo no matter what your max width can only be 390px wide. You can simple change that to the width you want and everything will fall into place
Forum: Fixing WordPress
In reply to: How to use if else in cssor you could do
<?php if(empty($bg2)) { $bg2="#000" } ?> .content { background-color:<?php echo $bg2; ?>; }
Forum: Fixing WordPress
In reply to: How to use if else in cssyou can try something like
.content { background-color: <?php if(!empty($bg2)) { echo $bg2; } else { echo "#000"; } ?> }
Forum: Fixing WordPress
In reply to: Change post title size?Hello Kirstastyker,
I’m not sure what you are talking about your h1 tag is set tofont-size: 70px;
which is huge. Did you change the font size recently? you may need to just clear your cache.