-->
Showing posts with label Video Tutorial. Show all posts
Showing posts with label Video Tutorial. Show all posts

Wednesday, May 18, 2016

How to Set Up a Private Gallery on MFC

Ok ladies, I made this video in a bit of a rush. I hope I covered everything and that you found this helpful if you didn't already know how to do it.


Wednesday, January 6, 2016

Check out my Youtube Channel for Video Tutorials

Youtube-Icon-2I know I've said that I was going to add specific video tutorials for a few of my free layouts and I do apologize that it takes me so damn long to get them done sometimes. But just thought I should let everyone know that I have a bunch of profile editing video tutorials on my youtube channel, and even though you may not find a tutorial made specifically for the layout that you want, you can still apply pretty much the same principles to all of the layouts. So go here and give them a peek, and you should be able to find the answer to your profile editing questions.

Wednesday, February 4, 2015

NEW Amazon & Twitter Graphics to Choose From

Lots of girls seem to love the Amazon & Twitter graphics that highlight when you hover the cursor over them. 



http://www.amazon.com/ https://twitter.com/




So I thought I'd make them in a few different colors to choose from.

Edit the bold red text before pasting this HTML code in the about me section on the edit profile page.

<div class="link-amazon">
<a href="Your wishlist url" target="_blank">Amazon Wishlist</a>
</div>
<div class="link-twitter">
<a href="http://twitter.com/Your_Twitter_user_name" target="_blank">Twitter</a>
</div>






CSS Code:



CSS Code:



CSS Code:



CSS Code:









CSS Code:



CSS Code:



CSS Code:



CSS Code:


Friday, October 25, 2013

Saturday, September 28, 2013

Simple way to make Animated GIF from videos

This tutorial is to show you how to make an animated gif clip from your videos, so you can use it to make ads to put on your MFC profile.

This is the gif I made, (I went with something "G rated" since I'm uploading the video tutorial to youtube as well LOL):





Here's the links to the websites I went to in the video:

Online-Convert.com

LunaPic

Wednesday, August 14, 2013

Personlized Twitter Buttons:

OK, so I made some animated twitter buttons that is easy to customize with your own twitter handle.

The out come should look something like this:

But you can choose the font and color that you like best of course.


First you'll want to right click on any of the images below, and either save it to your computer, or you can just click on "Copy Image Location":


Then you'll want to go to LunaPic.com and scroll down to either "Basic Upload" (if you saved your image to your computer), or "Open from Web with URL" (if you selected copy image location instead).

There you'll be able to add your Twitter handle to your image. You can also change the size of the image, and host the image from that site as well.

The code will be something like this:
(Substitute the text in blue for your twitter link, and substitute the text in orange for you image link)

Code:
<a href="https://twitter.com/Poker_Babe69" target="_self"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcXrDBfIvSpai1nWCVSmPRySkGR5uIYXwoXQOxRForwlxQJ8yN5PYW-tRLEPpcL8kbydb2lIfn4cqVx07uNoF7sFPyvGP7ulrQpcHfVf9FxICDzI19TsLNsP0K3_2NjzyRprq4gh20UMs/s1600/137651196780458.gif" border="0" /></a>


If you want it to highlight when you scroll the cursor over it add class='highlight' to the code.
It will look something like this:

Code:
<a href="https://twitter.com/Poker_Babe69" target="_self"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcXrDBfIvSpai1nWCVSmPRySkGR5uIYXwoXQOxRForwlxQJ8yN5PYW-tRLEPpcL8kbydb2lIfn4cqVx07uNoF7sFPyvGP7ulrQpcHfVf9FxICDzI19TsLNsP0K3_2NjzyRprq4gh20UMs/s1600/137651196780458.gif" class='highlight' border="0" /></a>


Then go to Customize Profile add add this CSS code:
(If you want a thicker or thinner highlight, you can change the two border: 4px rbga(x,x,x,x) rules. If you want to change the color of the highlight, you need to change the rbga values in the second rule. You can go here to find different colors.)

Code:
.highlight {
    outline:none;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    border-radius:3px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border:4px solid rgba(0,0,0, 0.0);
}

.highlight:hover {
    box-shadow: 0 0 10px rgba(255,0,255,1.0);
    -webkit-box-shadow: 0 0 10px rgba(255,0,255,1.0);
    -moz-box-shadow: 0 0 10px rgba(255,0,255,1.0);
    border:4px solid rgba(255,0,255,1.0);
}