Highlight Author Comment in Blogspot

Saturday, November 1, 2008

This trick is to give a Highlight Author Comment . This will make the blog's owner comments looks different from the visitors comments. It's very usefull and interesting blogger hack tips. You can see the example in my blog. Here is what to do to make a "Highlight Author Comment" effect in Blogspot.


1. Login to blogger, then choose "Layout --> Edit HTML". Don't forget to backup your template first.
2. Check the "Expand Widget Templates" box.
3. Copy this script and put it before ]]></b:skin> or copy to your CSS area.

.comment-body-author {
background: #E6E6E6; /* Background color*/
color: #000; /* Text color*/
border-top: 1px dotted #223344;border-bottom: 1px dotted #223344;border-left: 1px dotted #223344;border-right: 1px dotted #223344;
margin:0;
padding:0 0 0 20px; /* Posotion*/
}


4. Then find this code:

<dl id='comments-block'>
<b:loop values='data:post.comments' var='comment'>
<dt class='comment-author' expr:id='"comment-" + data:comment.id'>
<a expr:name='"comment-" + data:comment.id'/>
<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>
said...
</dt>

<b:if cond='data:comment.author == data:post.author'>
<dd class='comment-body-author'>
<p><data:comment.body/></p>
</dd>
<b:else/>


<dd class='comment-body'>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<p><data:comment.body/></p>
</b:if>
</dd>

</b:if>

<dd class='comment-footer'>
<span class='comment-timestamp'>
<a expr:href='"#comment-" + data:comment.id' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</span>
</dd>
</b:loop>
</dl>


5. The red color text is the code that you have to add to your script. The position must be right.
6. And then save your template.

* You have to login into your blogger account before to give comments.

Dilectio

Friday, October 31, 2008



Download

NiteLife

Wednesday, October 29, 2008



Download

DFire



Download

Spiderman 3



Download

Charcoal



Download

Rainbow Garden



Download

Field of Dreams



Download

Florascent



Download

Butterfly

Tuesday, October 28, 2008



Download

Create Vertical Menu

Friday, October 17, 2008

We have learned how to create horizontal menu before. Now we will try to make a vertical menu. We will make a vertical menu like the image. Ok let's do it

1. Login to blogger then choose "Layout-->Edit HTML"
2. Put the script below before this code ]]></b:skin> or put it in CSS code area.

.glossymenu, .glossymenu li ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 185px; /*WIDTH OF MAIN MENU ITEMS*/
border: 1px solid black;
}
.glossymenu li{
position: relative;
}
.glossymenu li a{
background: white url('http://blog.superinhost.com/vertical/blue1.gif') repeat-x bottom left;
font: bold 12px Verdana, Helvetica, sans-serif;
color: white;
display: block;
width: auto;
padding: 5px 0;
padding-left: 10px;
text-decoration: none;
}
.glossymenu li ul{
position: absolute;
width: 190px;
left: 0;
top: 0;
display: none;
}
.glossymenu li ul li{
float: left;
}
.glossymenu li ul a{
width: 180px;
}
.glossymenu li a:visited, .glossymenu li a:active{
color: white;
}
.glossymenu li a:hover{
background-image: url('http://blog.superinhost.com/vertical/blue2.gif');
}

* html .glossymenu li { float: left; height: 1%; }
* html .glossymenu li a { height: 1%; }



You can change the menu color, look at the red text (blue1.gif and blue2.gif). Change it with some color menu below. For example, if you want to choose red color, then the code would be like this :

.glossymenu li a{
background: white url('http://blog.superinhost.com/vertical/red.gif') repeat-x bottom left;


dan

.glossymenu li a:hover{
background-image: url('http://blog.superinhost.com/vertical/red.gif');



Vertical Menu Color :

blue1.gif

blue2.gif

green1.gif

green2.gif

red1.gif

red2.gif

pink1.gif

pink2.gif

black1.gif

black2.gif



3. Save your template.
4. Then go to "Page Elements" menu
5. choose "Add a Gadget -->HTML/JavaScript" the insert the code below.

<ul id="verticalmenu" class="glossymenu">
<li><a href="/">Home</a></li>
<li><a href="http://trik-tips.blogspot.com">Trik Blog</a></li>
<li><a href="http://x-template.blogspot.com" >Free Template</a></li>
<li><a href="http://getebook.co.cc">Free Ebook</a></li>
</li>
</ul>



Note :
- The red code is the links.
- The Blue code is anchor text.
- If you want to add menu, just copy the blink code and paste it.

6. Then click "Save"

Create Tab View

Tuesday, September 30, 2008

Tab View is very usefull box. We can fill it with many contain. It will save our blogs area. (See Image Below)


Here is Tutorial how to create a tab view:

1. Login to blogger, go to "Layout --> Edit HTML"
2. Then find this code ]]></b:skin>
3. Insert the below code before ]]></b:skin> or in CSS tag.

div.TabView div.Tabs
{
height: 24px;
overflow: hidden;
}
div.TabView div.Tabs a
{
float: left;
display: block;
width: 90px; /* Width top main menu */
text-align: center;
height: 24px; /* Height top main menu */
padding-top: 3px;
vertical-align: middle;
border: 1px solid #000; /* Top Main menu border color */
border-bottom-width: 0;
text-decoration: none;
font-family: "Times New Roman", Serif; /* Top main menu font */
font-weight: 900;
color: #000; /* Top main menu font color */
}
div.TabView div.Tabs a:hover, div.TabView div.Tabs a.Active
{
background-color: #FF9900; /* Top main menu background color */
}
div.TabView div.Pages
{
clear: both;
border: 1px solid #6E6E6E; /* Content Border color */
overflow: hidden;
background-color: #FF9900; /* Content background color */
}
div.TabView div.Pages div.Page
{
height: 100%;
padding: 0px;
overflow: hidden;
}
div.TabView div.Pages div.Page div.Pad
{
padding: 3px 5px;
}



4. You can change the code according to the red text explanation. To get html color code see HERE
5. The next step is put the code below before </head>

<script src='http://superinhost.com/trikblog/tabview.js' type='text/javascript'/>



6. Then "save" it.
7. Go to "Page Elements" menu
8. Chose "Add Page Element" --> "HTML/Javascript" in place where you want to put this tab.
9. Insert this code :

<form action="tabview.html" method="get">
<div class="TabView" id="TabView">
<div class="Tabs" style="width: 350px;">
<a>Tab 1</a>
<a>Tab 2</a>
<a>Tab 3</a>

</div>
<div class="Pages" style="width: 350px; height: 250px;">

<div class="Page">
<div class="Pad">
Tab 1.1 <br />
Tab 1.2 <br />
Tab 1.3 <br />

</div>
</div>

<div class="Page">
<div class="Pad">
Tab 2.1 <br />
Tab 2.2 <br />
Tab 2.3 <br />

</div>
</div>

<div class="Page">
<div class="Pad">
Tab 3.1 <br />
Tab 3.2 <br />
Tab 3.3 <br />

</div>
</div>


</div>
</div>
</form>

<script type="text/javascript">
tabview_initialize('TabView');
</script>



Note :
- The number or the blue text(350px) Is size of the tabview.
- The green code is the main menu text
- The red code is the content of tabview. you can fill it with links, banner, widget, comment or anything.
- To add more menu, see on the blink code. Add the code under it.

Good luck every body.


Show Recent Comments

Sunday, September 7, 2008

It's very usefull to Show Recent Comments on main blog page. We can know who have given comments on aur articles without open it one by one. At this time I will show you how to show recent comments on our main page blog. It's very easy


1. Login to blogger then go to "Layout"
2. Then copy this code :

<script style="text/javascript" src="http://kendhin.890m.com/comments.js"></script><script style="text/javascript">var a_rc=8;var m_rc=false;var n_rc=true;var o_rc=40;</script><script src="http://trick-blog.blogspot.com/feeds/comments/default?alt=json-in-script&callback=showrecentcomments"> </script>


- The 8 number is the sum of comments that will show up.
- Change trick-blog.blogspot.com with your blog's name.

3. You can show it in page elements. Just click on "add page elements --> HTML/Javascript" Then insert the script in it.

Or you can plug it in the "Tab View"

How to choose a domain name

Tuesday, September 2, 2008

dot-coms

These days we are seeing a boost in Internet users all over the world. Now most of the people want to get recognized by their own web sites. Moreover the web sites can also be seen as the future money makers as the blogs have a lot of earning potential inside them if written properly.

 

If you are also one of those trying to get a new web site for yourself then always try to consider these following tips when choosing a domain name for your web site or blog :

 

  • My most important recommendation is that always try to get a dot com ( .com ) domain. Its a fact that we remember the web site name with dot com easily rather than those .co.us or co.uk , .org & others . It also helps in preventing confusion in web site names. Domains like dot co dot uk ,us,in ,etc are suitable if you have a web site representing your Business. Moreover dot org is suitable for those web site related with organizations or institutions.

 

  • Short Domain name : Big web site addresses are difficult to remember & to type too as there are mistakes often. But short names are easy to share & remember.

 

  • Do not try to get a domain name which is an intimating address of some other web site like shoemoney.com to xhoemoney.com or something else like that . Hey I suggested a new name .. he he:) . Try to get your own unique name.

 

  • If you are having a domain name in your mind then you can check for its availability at web sites like Check Domain & get it registered at the earliest.

 

  • Try to use short form of the name which is in your mind & then try to apply it as domain. It results into better & shorter  domain name.

 

So hurry !! up Cowboy Internet Revolution is taking place register your domain name before some one other grabs it.

 

If you Love Struck loved  my post, then feel free to subscribe to my post &

get them sent into your Inbox Click here!

Add a widget

Monday, August 18, 2008

BlogCatalog a Traffic Goldmine!! for your Blog

Sunday, August 17, 2008

blogcatalog logo

 

Do you know today most of my blogs traffic come from 3 main sites Entrecard, MyBloglog & BlogCatalog. BlogCatalog contributes about 35 to 45 per cent of my blogs traffic. When I joined it I found it very similar to MyBlogLog but as I went inside the deep world of BlogCatalog I found that it has many more great things which can help your blog make a boom in the Blogosphere !.

 

Lets have a look at the features of BlogCatalog & see if it's worth joining for you ? So here is what you can do at BlogCatalog :

 

  • It's a social networking site like MyBlogLog & you can make good friends there.

 

  • Groups : Just like MyBlogLog's communities you can also create your own groups. I too have a one it's called the Blogger Unit Big Grin.

 

 

  • There are many groups on BlogCatalog which can help your blog get a lot of exposure
      • If you are on Digg then you can ask for Diggs to your posts .
      • You can get your blog faved on technorati & make a large fan base.
      • You can exchange blog links with others.
      • Get your posts Stumbled on StumbleUpon.
      • Entrecard users can get drops on Entrecard groups.

 

    • When ever you ask for anything there at BlogCatalog always reciprocate too! so that others always give you what you need.

 

  • When you register your blog at BlogCatalog directory your blog starts getting ranked based on the star rating . Mine is ranked at 64.4 out of 100 at present .

 

  • BlogCatalog has a Google Page Rank 7 , so getting your blog listed there is worth it.

 

If you want success in your blogging then I think BlogCatalog should be one of the first ingredient of your Blogging career. If you spend even half an hour daily on BlogCatalog then I think you really can get good number of unique visitors to your Blog.

 

If you Love Struck loved  my post, then feel free to subscribe to my post &

get them sent into your Inbox Click here!

Which Credit Card to choose for your Business

Saturday, August 16, 2008

August 16 2008

 

 

extracc_1 Everybody today wants to extend their business & make more & more money. Its a must requirement in today's world to have a Credit Card in your wallet so that you can purchase anything anywhere anytime. It helps you keep pace with the fast moving world . Now you don't have to carry any cash in your pocket as the small & slim Credit Card has took over that job.

 

If you are running a Business no matter it's on a large scale or small, a Credit Card can help you a lot in your field.

 

You should know that if you are Blogger & trying to earn money through it then this is a Business too! . We all bloggers know how many opportunities there are today for us which require Credit Card access so that Money may get transfer into our account when we complete an offer. In this way Credit Cards have also fasten the way we received money.

 

If you are confused in choosing a Credit Card for your Business then you must visit Extra Credit Cards. Their main aim is to help you learn how to choose a perfect Credit Card for your business. The site shows great deals to its customers to help them choose the one which is the BEST.

 

They offer great offers for Credit Card which give their users extra bonuses including Travel rewards & many other benefits. You can find extensive range of Credit Card deals at Extra Credit Cards. You can also get low APR Credit Cards which saves you from high interest rates.

 

At Extra Credit you can also contact them personally if you are not getting the right offers for yourself.

 

If you Love Struck loved  my post, then feel free to subscribe to my post &

get them sent into your Inbox Click here!

How to make money through Forex Currency Trading

Thursday, August 14, 2008

August 15, 2008

 

Everyday there are new ways invented to earn money . Forex is a great way of earning money which is getting popular globally & making news daily.

 

forex 

What's Forex ?

 

Forex is the marketplace where people sell or buy different currencies with one aim that is to make Profit.

 

 

Do you know ?

 

Today Forex Market is the largest trading market in the whole world with over 1.8 million amount of currency daily traded.

 

Lets take a simple example to help you understand how currency trading help you generate profit -

 

A person buys $100 US Dollars for Indian Rs.4400 @ Rs. 44 per dollar  & the second day the rate of Dollar changes to Rs.45 per US dollar & therefore he's able to make Rs.100 or US $2.22 by selling US $100 after the price change.

 

Fab Forex can help you a lot if you want to understand the secrets of forex trading. The simple articles at Fab Forex can really help you make money from this business.

 

Everyday there are changes in the rates of currencies in comparison with our native currency. Therefore this market is very delicate or random & anything can happen at any time. As from the above example you saw how even a small change can earn you big.

 

If you want to go into this business then one most important thing which you have to be aware is the market updates. If you are able to understand & can keep track of the latest fluctuations of the market then you will be able to generate a good amount of income through this business.

 

Today this trading has totally gone online , one just has to sit in front of computer with Internet connection & should have access to his bank account online. And the person is set to go. You can exchange at low rates, can simply trade the money with a single click & get profits. It has made the trading fast & easy.

 

In the end I would like to say that a risk factor is always there in this business but if you have knowledge of what's going on in the market then your success is for sure !!

 

If you Love Struck loved  my post, then feel free to subscribe to my post &

get them sent into your Inbox Click here!

VLC player the Ultimate Multimedia Solution

videolan-logoIf you are sick of installing different players on your PC for playing different formats then you must try VLC Player. It's an all in one solution for playing your multimedia files without any errors or so.

 

images

Few days ago I brought some Music Videos in.Avi format from my friends & then I tried to play them using Winamp & Windows Media player , but sadly both of them were just playing the sounds but not the video, so I decided to install VLC player & it easily played all of my videos without any hassle.

 

The best advantage of this player is that you can play variety of Formats on the same player. Some of that common formats played by VLC include .Mov ( Quicktime ), .Avi, OGG, MP2, MP3, MP4, DivX , Wmv & the list goes on.... The player is also customizable with different skins if you don't like the default skin.

 

This player is a must download for anyone who wants to play videos..

 

The latest version at present is VLC 0.8.6 .. Check it out !!

 

If you Love Struck loved  my post, then feel free to subscribe to my post &

get them sent into your Inbox Click here!

How to protect your Blog Content

Saturday, August 9, 2008

imagesEvery blogger has his or her own writing style which he/she wants never to be copied by others. But many out there exploit other peoples content by simply copying the whole matter from others blogs to theirs. This not only affect the SEO of a blog but also the reputation of blog is affected as the copier write their own name in the end & show them as their very own creation.

 

Although the problem is not solved completely at present but you can follow these tips & can prevent those suckers! Devil from stealing your content :

 

Copyscape : Copyscape is a web site where you can get badges for your blog that gives warnings to others & can help prevent copying of your blog. You can also search for copies of your web pages at Copyscape & can sue the copier. Moreover the banners can really help you

Page copy protected against web site content infringement by Copyscape

defend your site a lot & make the people prevent & think before copying material from your blog. Here's how the banner looks after installing on your site....

 

 

MyFreeCopyright : MyFreeCopyright is very much similar to CopyScape. But I would say that this is more real than the CopyScape as you manually create your account , configure your blog by entering the url & then a badge with unique code is given to you for embedding on your blog. I have one at my blogs footer just like this ; MyFreeCopyright.com Registered & Protected .

 

Look at the image below which explains the MyFreeCopyright method more clearly :

 

myfreecopyright

 

About Page of your Blog can also help you save content of your blog. You can set rights for your blog & can give a do's & dont's list on your Blog.

 

No Right click Method: This method involves disabling right click on Web Page. All you have to do is add a small code inside body tags of HTML code of your blog. This prevents users from selecting & copying text & images from your Blog. Read More at Hypergurl.com..

 

Link Back requirement : You can set a simple requirement in about page or at front page of your blog that " users copying anything from this site must give a link back to their site in the end of their copied material " . This line can help you gain popularity & you can get full benefit if someone copies anything from your site.

 

If you Love Struck loved  my post, then feel free to subscribe to my post &

get them sent into your Inbox Click here!

Understanding Ad Channels in Google AdSense

Sunday, August 3, 2008

google_smMost of you who are using AdSense & don't know what are those Ad Channels Right !! Ad Channels which you see during the setting up of an ad for your Blog or Web Site. The same question was in my mind when I started using AdSense in June 2007 last year. But I got the answer at that time & started configuring them every time I set up an ad.

 

Now its time for you to understand the Ad Channels in AdSense which is really a great feature of Google AdSense. First of all you should know that Ad Channels have nothing to do with ads display .

 

So lets understand them in a simple & a short way..

 

When ever you setup an ad in AdSense, Google asks you to create an ad channel for the ad. The Ad Channel you create helps you to track the performance of ads which come under the channel.

 

ad-channels-dreadbob

 

Performance of ads includes the number of clicks the ads get. Always name the ad according to the size & the location where you are going to place the ad on your blog. For example- I am going to use 468x60 ad on right top of my blog, then I would give the name to the ad like '468x60 Top Right ad' which will help me check them better.

 

This will give you a better idea of the location of Ads on your site where they get maximum clicked or attention. This can also help you get rid of extra unwanted ads on your blog which are just occupying your precious blog space.

 

I would reccomend you to first experiment & then choose where to place ads so that you get maximum profit. So by configuring ad channels you can earn big, if you follow it properly.

Featured Entrecard Status... Does it Work? Result is here!!

Saturday, August 2, 2008

 featured-dreadbob[4]Hi guysz I am sorry for delay of this post in which I decided to tell you about the result of Entrecard Featured Status item after a week as I bought it.

 

So here is what I got :-

 

It helped my blog reach 512ec/day price for a 125x125 ad on Entrecard widget. Though the price is not same at present or may be same if you check but it really helped me cover those 750ec easily which I spent on buying Featured Status.

 

Moreover it also helped me improve my blog's popularity rating which I think was impossible for me if didn't used Featured Status.

 

What I Recommend

 

Featured Status is really worth it.. A must buy item for bloggers at Entrecard!

IT services in New York by iCorps

Wednesday, July 30, 2008

July 30 2008

 

logo IT or Information Technology may be called as the buzz word of the 21st Century. It is the one of the fastest growing sector in the business world today. IT deals with information computing ,database management, network engineering & many others professions which come under the shadow of computers. Many big companies are searching for young & intelligent IT professionals for their companies.

 

iCorps Technologies is a well established & reputed company providing IT services in New York , USA. It is one of the largest IT consulting firms up to date in US. The company aims at providing best solutions for different business. iCorps also provides remote IT services under one roof to help you get maximum out of your business.

 

iCorps is managed by certified consultants which are technology experts & provides you the best services.

IT services in New York which are being provided by iCorps include:

 

  • Security Management for your systems
  • Software & Hardware at good costs
  • Wireless Access of systems
  • Application Development for business
  • Help & Support for Desktops

 

iCorps has partnership with best companies of IT Sector which includes MICROSOFT, APPLE CONSULTANTS NETWORK, BLACKBERRY & many others. The customer services are best among the available IT outsourcing companies. The experts at iCorps tweak up your business & make it move on path of efficiency & maximum performance.

 

The skill & advanced management at iCorps can take your business to the new levels.

Google updating Page Rank - July 2008

Sunday, July 27, 2008

images Well the time has come again & Google is set to update the page ranks of Web sites. Last year when I started my blog I was able to reach Page Rank 6 which was for a short time & it dropped to 4 . Google updates the page rank to refresh the Webs site database but unfortunately many sites have to suffer as they see dropping in their higher ones to lower .

 

Anyway, its also said that this update may bring smiles to the owners of the sites which were earlier penalized by Google in its last update.

 

Like most of the guys I have worked a lot on my Blog's back links number , SEO & traffic. Lets keep the fingers crossed & hope for the best..

 

God Bless.. All the best to all ..Praying

WidgetBox Widgetizing the Blogosphere

Friday, July 25, 2008

 dreadbob-widget-box

 

Ever thought of converting your blog into a widget ! which can be embedded by the other people on their blogs but at WidgetBox dot com you can create a widget of your blog for others in easy & simple way.

 

I too created a widget of my blog which today have 33 subscriptions, which means this Works!! & I would recommend it as it's really worth trying. When you build your widget then a code to be placed on your blog is given. After you place the code the visitors on your blog can subscribe to your widget.

 

wbx-pbadge14 WidgetBox not only offer this, you can get & create widgets of many kinds like games, news feed , visitor counter, translator & many more under different tags . You can also place the code of the widget on your blog which will help bring more  subscriptions. The widgets created with WidgetBox are compatible with most of the Blogging Platforms like MySpace, Blogger, WordPress,etc.

 

Here's a Screen shot of my widget :

 

B-uint-widget-dreadbob

 

One important thing to be noted is that always give specific tags to your widget which helps in better SEO & will give you more subscriptions & traffic to your blog.

How to search if your Blog is listed in AWESOME BLOG LISTING !

Thursday, July 24, 2008

abl

AWESOME BLOG LISTING which is taking place on my blog has now more than 500 blogs listed . It has come to my notice that many people are putting their links for listing even if their blogs are already listed.

 

So finally I have come up with solution which can help you find if your blog is listed in AWESOME BLOG LISTING or not .

 

Here's how to check it ;

 

 

  • Press Ctrl + F ( for Firefox, Opera & IE 6 or above ) .

 

  • A dialog box appears asking to search for words on the page.

 

  • Then type in your blog address in 2 different ways to check your blog listing

      

       1. http://your-address.com

       2. http://www.your-address.com

 

  • If your blog is listed in the AWESOME BLOG LISTING then you can reciprocate me by placing blog badge on your site.

 

  • If your site isn't listed then put your blog in Shout Box at AWESOME BLOG LISTING page, your blog will be added & don't forget to reciprocate me by placing new! blog badge on your site..

 

Here's the New! AWESOME Badge code :

 

<a href="http://dreadbob.blogspot.com/2007/05/listing-of-awesome-blogs-on-web.html" target="_blank"><img src="http://i169.photobucket.com/albums/u212/Bobmatharoo/awesome-blog-badge.jpg" border="0" alt=" My Blog listed at AWESOME BLOG LISTING "></a>


Preview : My Blog listed at AWESOME BLOG LISTING

Featured Status at EntreCard.. YES ! it works!!

Wednesday, July 23, 2008

featured-dreadbob I was wandering on Entrecard to find something to boost my ad sales on Entrecard. Then in the Shop there, I found a lot of things which you can buy at the cost of your Entrecard Credits.

 

 

 

I entered the Upgrades Section where I found Featured Status item . It costs you around 750 Ec .

 

What does Featured Status do then??

 

When you buy it your Blog gets covered by Gold Border which helps attracts buyers to buy ads from your site..Your Blog remains like this for 1 week.

 

gg

 

And today I bought 1 for my blog too!. Now if anyone searches blogs in Blogging Resources section for dropping or buying ad, they will see my Blog just like this;

 

dreadbob-gold 

               { this Pic is just after I bought Featured Status }

 

It costs 750 Ec .The Golden border makes your blog look different in the crowd of blogs & thereby results in attracting buyers to buy ad on your blog.

 

dd

 

I think this has really affected my Blog because now its been 3hrs after I purchased the item & not it costs others 256 Ec/day for advertising on my blog. Hope the number will increase soon!!. Result is here ---->

 

 

 

 

 

 

Does Featured Status Work??

 

YES it does till now as you can see my blog jumped from 64 to 256 Ec/day after I bought the item .. lets see what is the maximum  I can achieve during this week.

 

If you loved Love Struck my post, then feel free to subscribe to my post &

get them sent into your Inbox Click here!

Related Posts with Thumbnails
 
 
 
 
Copyright © Blog Rescue