Showing posts with label blogging. Show all posts
Showing posts with label blogging. Show all posts

Sunday, July 31, 2011

CSS/HTML Basics for Bloggers–Part 1

 

It’s hard to believe that when I first started this blog just over a year ago I knew absolutely nothing about CSS/HTML. I’ve learnt so much in the past year and I’ve really enjoyed it. So many bloggers want to be able to tweak their theme but aren’t sure on how to do it so I thought I’d share some of my knowledge to help you achieve the effect you want on your blogs.

This is going to be a 2 part guide. The 1st part will focus on those bloggers that use Google Blogger and then in the 2nd part I will focus on Wordpress.

I will use the HTML from one of my old blogger blogs to demonstrate what you need to change to achieve the desired result.

This is the code at the top of my template.

<Variable name="bgcolor" description="Page Background Color"
             type="color" default="#135" value="#ffffff">
   <Variable name="textcolor" description="Text Color"
             type="color" default="#ccc" value="#666666">
   <Variable name="linkcolor" description="Link Color"
             type="color" default="#9bd" value="#F5A9A9">
   <Variable name="pagetitlecolor" description="Title Color"
             type="color" default="#eee" value="#cccccc">
   <Variable name="descriptioncolor" description="Blog Description Color"
             type="color" default="#79b" value="#666666">
   <Variable name="titlecolor" description="Post Title Color"
             type="color" default="#fc6" value="#F5A9A9">
   <Variable name="bordercolor" description="Border Color"
             type="color" default="#468" value="#ffffff">
   <Variable name="sidebarcolor" description="Sidebar Title Color"
             type="color" default="#579" value="#F5A9A9">
   <Variable name="sidebartextcolor" description="Sidebar Text Color"
             type="color" default="#ccc" value="#999999">
   <Variable name="visitedlinkcolor" description="Visited Link Color"
             type="color" default="#a7a" value="#999999">

The code above sets the default colours for your theme.  So to change these colours on your blog just look up the html code for your desired colour here and replace the numbers above with the html code number for the colour you require. Simple!

body {
      background:$bgcolor;
      margin:0;
      color:$textcolor;
      font: x-small $bodyfont;
      font-size/* */:/**/small;
      font-size: /**/small;
      text-align: center;
      }

This code sets the body of your blog. The $bgcolor is the variable you defined in the previous step.  You can change the text align to left or right if you don’t wish it to be centred. And the text color is what you specified in the previous step.  The margin is the space around the outside of the theme.

a:link {
      color:$linkcolor;
      text-decoration:none;
      }
   
a:visited {
      color:$visitedlinkcolor;
      text-decoration:none;
      }
   
a:hover {
      color:$titlecolor;
      text-decoration:underline;
    }

This code specifies the colour and text decoration for your links. As before the link and title colours were specified in the first step. Text decoration can be set at ‘none’ for normal text, ‘underline’, ‘italic’ or ‘bold’.

#header {
background: url(http://zzzz.jpg) no-repeat top center;
height: 335px;
width: 924px;
}

This code is for your header. If your header is too big or small, change the height and/or width in this html.

#outer-wrapper {
  width: 950px;
  margin:0 auto;
  text-align:$startSide;
  font: $bodyfont;
  background: #ffffff;
  }

The outer wrapper area includes the posting area, sidebars and header.  Changing the "width" will make that area larger or smaller.
Just remember that if you change the size of this area you’ll need to amend the size of your posting area and the sidebars too.  The total width of your posting area/sidebars must be less than or equal to the width of the outer wrapper.

#main-wrapper {
  width: 600px;
  float: $startSide;
  padding-left: 10px;
  padding right: 10px;
  margin-left: 0px;
  margin-right: 10px;
  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 */
  }

The main wrapper is your posting area size. To make it bigger or smaller just increase or decrease the width. Padding-left adds space to the left of the posting area and padding-right adds space to the right. If those values were both 0 then there wouldn’t be any gap between the post area and he sidebars. It is of course important to have a space between page elements otherwise your blog would look crowded and hard to read.

*/
h2.date-header {
  margin:4.5em 0 1.5em;
  border-bottom: 0px dotted $bordercolor;
  text-align: left;
  text-transform:uppercase;
  }

This code helps change the apeearance of the date on your posts.  ‘text-transform’  means what case the date is in. Uppercase makes it all capitals, lowercase makes it all non capitals.

‘Border Bottom’ sets the border underneath the date.

.post h3 {
  margin:.25em 0 .5em;
  padding:0 0 4px;
  font-size:170%;
  font-weight:normal;
  font-family:fraktur;
  line-height:1.4em;
  color:$titlecolor;
  text-transform:lowercase;

This is the code for your post titles. Increasing or decreasing font size will of course make your titles bigger or smaller. Font weight can be normal or bold. And you can also change the text to lower or uppercase (like the previous step) under ‘text-transform’.

So these are the basics to tweaking your theme in Blogger but of course if you have any questions just drop it in the comments section!

Friday, July 22, 2011

SEO Tips for Bloggers


ecommerce-seo
While twitter, Facebook and other social networks are a great way of increasing traffic to your blog, I’ve found that I get far more traffic from search engines than I do from social networks. SEO or search engine optimisation is vitally important if you want to expose your blog to the masses. But it can feel a little overwhelming and all the guides that I’ve read about SEO have been over complicated. SEO is actually fairly simple and makes it easier for people to find that stunning content that you’ve spent ages writing. The beauty of SEO is that it exposes your blog to non-bloggers as well as bloggers whereas visitors landing via twitter or Facebook are usually your fellow bloggers. So let’s get started!
Keywords
One of the most important aspects of SEO is keywords. But how do you select which keywords to use? Ideally you’ll want to choose the keywords that are used in searches most often. The easiest way to find out how often a particular keyword is used in a search is to visit Google Adwords site and enter your keyword. It will tell you how often that word is searched for worldwide and it will also tell you how often it’s searched for in your local area. This helps you identify which words will bring you the most visitors.
Where you position your keywords and how often it appears in your post is also of importance. So here are some tips on keyword positioning and frequency:
  • Position keywords near the start of a post
  • Use keywords in blog titles (preferably near the beginning of the title)
  • Add the keyword to image tags, titles and file names
  • Try and use the keyword at least 3 or 4 times within a post
  • Don’t have too many keywords or tags though, if you do your blog may be labelled by search engines as spam
Internal Links
Most bloggers write content within a particular area (i.e. fashion). So you’ll often have multiple posts on similar topics. You can give your SEO ranking a helping hand by linking keywords from other posts. Let’s take an example:
B from Beautifully Invisible regularly writes about fashion designer Tom Ford. So let’s say she is writing a new post about a new collection Tom Ford is launching with Tom Ford being the keyword. In her new post whenever she uses the keywords Tom Ford she could create a link to one of her previous Tom Ford posts. Not only will it boost her SEO ranking but it will also increase her page views as visitors visit her previous posts n the topic. Double win!
Final Tips
  • Links from other sites increase your search ranking
  • SEO plugins like All in One SEO are useful. If like myself your using the Thesis theme then it has an SEO section built in to post editing pages. Fill in the required fields to help your ranking.
  • Create killer content that people will share on Facebook and twitter.
  • Make post urls as short as possible and descriptive. Avoid urls that look something like this ‘fuyume.net/p-844’
Following these tips should boost your search ranking and as a result you should see more people landing on your blog via search engines. Good luck! and if you have any questions, just ask!

Sunday, April 3, 2011

A Guide to Creating a Favicon for your Blog



Today I’m going to show you guys how to create a favicon for your blog. Favicons are useful for making your blog more aesthetically pleasing and making it stand out in your readers bookmarks.

This is my favicon (its the heart made out of flowers). This is how it looks in Firefox 4.0

uk beauty blog



Right lets get straight into how to make one.

First of all decide on what you’d like to be your favicon. Some people use the first letter of their site while others use shapes or logos. Just make sure whatever you choose is clear to see even in very small dimensions. Save it as a .png file measuring 16x16 pixels.

Then follow the steps given below. They’re different for Wordpress and Blogger.

Blogger

Go to favicon generator site Dynamic Drive. Upload image to generate the favicon and download it. This will convert it to an .ico file. Upload this .ico file to photo sharing site Picturestack. Do not use flickr or photobucket as they do not support ico files. Copy the link and paste into an app like notepad.

Then log into your blogger dashboard and go to template –> Edit HTML

blogger

Find this line of code near the top.

<title><data:blog.pageTitle/></title>.

Directly underneath this line paste the following code.

<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">

    Replace 'favicon.ico' with the url of your favicon (the one you pasted into notepad).

    Then hit save and voila your done. The favicon may not appear immediately depending on the browser but it shouldn’t take long.



    Wordpress

    First of all add add your favicon as a .png to your media gallery (media -> add new)

    Log into your wordpress dashboard and scroll down to plugins –> add new.

    Search for ‘All in One Favicon’. Install and activate it.

    Find the plugin listed under settings and click on it.

    In the fields named ‘backend ico’ and ‘frontend ico’ fill in the url of your favicon image.

    uk beauty blog

    Hit save and your done. With this method your favicon will appear immediately. I hope this little tutorial will be of use to all of you who don’t yet have one. If you have any questions just leave them in the comments and if you use the tutorial to add a favicon let me know so I can check it out.

    Saturday, February 12, 2011

    What is an Alexa Ranking? How is it Beneficial to My Blog?

     

    TH title

    Untitled

    What is an Alexa Ranking?

    Alexa is a powerful well regarded (especially by a lot of advertisers) tool used to rank web site traffic. It allows you to discover how your traffic compares to other websites! A word of warning though – it is not 100% accurate. The lower the alexa ranking the higher your traffic. For example Google has a pagerank of 1 which means its the site with the highest ranking – unsurprisingly. Alexa allows you to check out not only your global ranking but also how your site ranks within any chosen country.Untitled

    Reg TR

    Untitled

    How do they work out your ranking?

    Information is collated by looking at the browsing history of users who have the alexa toolbar installed mainly. Millions and millions of people all over the world have the toolbar installed and this is why I said that its not 100% accurate as not every computer user or blog visitor has the toolbar installed. Having the toolbar also allows you to find out the Alexa Rank of any site you visit.  The higher you rank the more accurate your ranking. Sites with a ranking under 100,000 are thought to have an accurate ranking. Untitled

    Why Alexa is Beneficial to Bloggers?

    Your site information on Alexa provides a lot of different information on visitors to your blog.

    First up – top search queries. This is very useful for finding out which search terms bring people to your blog.

    Untitled

    TR search

    Untitled

    And what your high impact traffic searches are:

    Untitled

    TR

    Untitled

    It also tells you how many sites with the toolbar installed are linking to your blog:Untitled

    TR2

    Untitled

    It has information on: Untitled

    average pageviews per user. one month – calculated over 1 month of traffic and 3 month looking at 3 months of traffic and tells you the how much it has increased or decreased. Untitled

    TR3

    Untitled

    Bounce Rate: Untitled

    TR4

    Untitled

    Time on Site:

    Untitled

    TR5

    Untitled

    Typical Audience:

    Untitled

    TR6

    Untitled

    So as you can see Alexa really is a worthwhile and powerful tool for bloggers. If you have any questions about Alexa just ask?

    Monday, January 10, 2011

    I’m SO Excited!

    As many of you already know I’ve had plans for a dedicated community for UK fashion bloggers in the works and i’m pleased to say I’ve now set up the site and got my first members. I launched it yesterday and so far so good. Obviously I still have a lot of work to do but the foundations are in place. It has forums, groups, profiles and each few days i’ll be showcasing a different blogger who’ll appear on the front page.



    My aim is to provide somewhere for UK bloggers to congregate and share experiences for the benefit of all us. I want the uk fashion blogging community to become more close knit as there is a huge absense of a dedicated fashion blogging network for us brits. I love many other blogging communities and will still participate in them but feel that they tend to be USA centric.

    I’ll be purchasing a custom URL but for the moment its at - http://ukfashbloggr.ning.com/

    ukfb

    Friday, December 24, 2010

    Merry Xmas Everyone!



    Well its now Xmas Eve - yay!!! I love this time of year when everyone is soo full of christmas cheer. My kids are super excited and I'm super thankful. 2010 has been a very good year. This time last year I wasn't in a good place. I was living miles away from my family in a place I hated. How much things have turned around. I'm now back near my family in a place I love and in a house I adore.

    And who would have thought that I would be a fully fledged blogger with a growing group of loyal followers. Blogging has brought so much joy to my life and i'm forever thankful. It has introduced me to some super wonderful people from all over the world and brought opportunities I would never have thought possible. When I started I thought I would be lucky if I had ten people reading my blog and now i have over 400 followers and 300 subscribers and a blog deemed good enough to join ultra selective Handpicked Media. I am blessed. So most of all I want to say a HUGE thankyou to you guys - my readers. Merry Xmas and I hope you all have a wonderful New Year :)

    And a special thankyou goes to Vahni of Grit and Glamour for giving me a 'most supportive blogger' award in her blogger awards. I'm in such good company and feel very thrilled and priviliged.

    The last thing i'd like to say is that I've long been searching for a place for UK fashion bloggers to meet and chat as most blogging communities seemed aimed at the U.S. So i've started my own. For the time being it will run from my blog but eventually i'll create a stand alone site for it. Check out the pages on joining at the top of my blog and I've also added a UKFB forum for chats and discussions.

    Anyway I'm off to get on with wrapping pressies and such stuff but i'll be back on boxing day :)

    Merry Crimbo!!!