
Saturday, April 28, 2007
AuctionAds - Ebays Answer to Adsense

Posted by
Everyday Hero
at
4:54 PM
0
comments
PayPerPost Review
Posted by
Everyday Hero
at
12:50 AM
1 comments
Friday, April 27, 2007
Hack: Hide Navbar (hide/show button)
Ok, this code will allow you to hide the Navbar when you want to, and show it if your editing your site. The navbars pretty helpful, so this may be better than just getting rid of it. Use your browsers "Find" (ctrl+F) function and search for <head> right below, paste the following.
<script type="text/javascript">
var showHeader=false;
function ShowHideNav()
{
showHeader=!showHeader;
var nav=document.getElementById("navbar-iframe");
if (showHeader)
{
nav.style.visibility="visible";
nav.style.display="block";
}
else
{
nav.style.visibility="hidden";
nav.style.display="none";
}
}
</script>
<style type="text/css">
#navbar-iframe {
visibility: hidden;
display: none;
}
</style>
Ok, that should hide the navigation, but to get it to click on and off, you need to paste the following code in a Page Element. I put mine in a regular html section.
Show|Hide
<a style="visibility:hidden;" href="http://bloggingforsoup.blogspot.com"></a>
</span>
Remember to exchange the link to my website with yours and you should be all set! Enjoy hiding your new Navigation Bar!
Posted by
Everyday Hero
at
4:01 PM
Hack: Hide Navbar (permanently)
*Note - This is the easy way to hide your Navbar. If your looking for a Navbar that you can use and then hide when your done, click here. Alright, Go to the Edit HTML portion of you dashboard and use the "Find" (ctrl+F) function of your browser. Search for #header-wrapper and paste the following code directly above it.
#navbar-iframe {
height: 0px;
visibility: hidden;
display: none;
}
Horray! No more Navbar!
Posted by
Everyday Hero
at
2:37 PM
0
comments
Hack: Add a Picture to Your Header
<b:widget id='Header1' locked='true' title='blogtitle (Header)' type='Header'/>
</b:section>
</div>
Posted by
Everyday Hero
at
1:03 PM
0
comments
Hack: Edit Sidebar "Title" Background Colors
/* Sidebar Content
----------------------------------------------- */
Right underneath this, paste the following
.sidebar h2 {
margin: 1.6em 0 .5em;
padding: 4px 5px;
background-color: #ffffff;
font-size: 100%;
color: #000000;
}
Ok, Now you've made it so you can edit the titles and title backgrounds on your sidebar. Currently, your font color is set as #000000 (black) and your background color is set as #ffffff (white). You can easily change either of these hexadecimal codes to your choice of color. My personal favorite way to find the right code for the color I want is to use Photoshop, click on foreground color (the color box closer to the screen in your tools navbar), select the color I want, and look at the bottom right hand corner for my hexadecimal code. If you don't have Photoshop try going here or here.
Posted by
Everyday Hero
at
12:29 PM
0
comments
Hack: Three Column Template
Alright, for this one your going to need to choose either the Minima Dark or Minima White Templates. Right now I'm pretty sure these are the only ones this works for. If your looking for a different scheme, you can always change the colors of everything later. Before we start, you should probably back up your template. Click Customize on your NavBar, then the Template Tab next to posting and Settings. From here click the tab Edit HTML and then under this click Download Full Template. Good, now we can get on to the real fun.
Under Edit Template, use "Find" by pressing ctrl+f to search for #main-wrapper { . It should take you right to it. Once your there, paste the following code right above it.
#leftsidebar-wrapper {
margin-right: 14px;
width: 220px;
float: left;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
What you just did was add a new column, and unfortunately in the process your old right hand column got pushed off the page. To fix this problem, we look right above where we just pasted the #leftsidebar-wrapper { code and we see #outer-wrapper { . Now your going to have to trust me on this part. I want you to delete #outer-wrapper { and everything directly under it, then paste the following code in its place.
#outer-wrapper {
width: 1000px;
margin:0 auto;
padding:0 0 15px;
text-align:left;
font: $bodyfont;
}
One more thing then we can move on. Three sections below #outer-wrapper { you will find #sidebar-wrapper { . All I want you to do here is add margin-left: 14px; between #sidebar-wrapper { and width: 220px; and were done with that part.
What we just did was change the page parameters so that everything will fit. This is the last and might I add the easiest step. This actually puts the extra column on the page! Use "Find" (ctrl+f) again, and search for div id='main-wrapper'> . Right above this point your going to paste the following. *note, You need to add a < in front of each of the following... I could not get it to save properly otherwise.
div id='leftsidebar-wrapper'>
b:section class='sidebar' id='leftsidebar' preferred='yes'>
b:widget id='Text1' locked='false' title='' type='Text'/>
/b:section>
/div>
Posted by
Everyday Hero
at
2:12 AM
0
comments
Thursday, April 26, 2007
About Me

I know I don't look like much, but this is the second website I've started while trying to stake my claim on the internet goldrush. I'm a Graphic Art/Marketing major living (and hopefully not struggling) out of Connecticut. I started out knowing only what I've read about building and maintaining a website; and I knew much less about making money off one. I'm here to prove that I can make it in the real world just like I made it through college. That and... I'm poor.
Posted by
Everyday Hero
at
7:15 PM
0
comments