Showing posts with label blogger. Show all posts
Showing posts with label blogger. Show all posts

Sunday, November 13, 2011

Cupcake and Tribal Nail Art

uk beauty blog nail art

uk beauty blog nail art

Right y'all know i'm obsessed with nail art right? Well these are two of my most recent creations! I'm especially proud of the cupcake ones. I'm no Sophy Robson but with lots of practice my nail art is steadily improving. You'll see more of my creations on my twitter page under recent images. If your keen to try nail art then don't bother with the models inc nail art pens as they only do two colours and are £6 each. Check out ebay where you can buy a set of 24 for about £12. They are basically the same as the Models Inc ones but a hell of a lot cheaper. Tweet me your creations at @fayemarieblogs. Give it a try!

Friday, November 4, 2011

Berkeley Square Cosmetics Collaborates with Royal Ballet

Berkeley Square (the cosmetics brand) have gotten together with The Royal Ballet and principal dancer Olivia Cowley to create a bodycare collection. The new range includes a body cream, hand & foot cream, muscle soothing gel and a bath and shower creme.

uk beauty blog berkeley square





uk beauty blog berkeley square



uk beauty blog berkeley square

The products have a delightful soft scent and work really well. The hand and foot cream is a particular favorite of mine. My feet took a battering in all the press day madness but this cream really rescued them. I applied a thick layer to both feet before bed, put on some socks and awoke to soft feet.

The range was designed to be used by The Royal Ballet dancers and to also be used by today's modern woman. Many of us have demanding lifestyles and need products that can deal with that. The range is intended to ease the stress on your skin while also being soothing and moisturising. It's a premium range that includes soothing materials menthol, seaweed extract and aloe vera as well as ingredients vitamin e and arnica which are vital for skin repair.

The range is priced from £12-£18.

It is available from The Royal Ballet shop and other stockists listed here.

Sunday, October 30, 2011

G Star Raw Women's Night

On Thursday night I was lucky enough to be invited to attend legendary denim store G Star Raw's Women's Night. Held at their Covent Garden store and other stores worldwide. It was a night of music, pampering and fabulous fashion. I took along my 'partner-in-crime' Scarlett of Oh So Scarlett.

Now I always thought of G star Raw as a menswear store  but the event proved that the store is equally aimed at the fairer sex. Now i'm not usually a big fan of denim brands as my personal style is very girly but G star Raw does denim perfect for a girl like me. The collection isn't restricted to denim either I found their knitwear particularly enticing.

One of the high points of the night was having my nails done by a lovely lady from Butter London. I've never tried their polishes before but I had of course heard of them. I was seriously amazed  by the quality, colours and how quickly it dried. I was also overjoyed to discover that it doesn't contain formaldehyde like most mainstream polishes. I opted for a very lush looking glittery gold.

There were also hairdressers on hand as well as makeup artists from Benefit. In Style magazine were also in attendance including their fashion director and stylist.

I also met up with blogger buddy Elle of A Bird in the Hand. So it was like a mini blogger meetup.

uk beauty blog g star raw


uk beauty blog g star raw

uk beauty blog g star raw

uk beauty blog g star raw

uk beauty blog g star raw

uk beauty blog g star raw

uk beauty blog g star raw

uk beauty blog g star raw

uk beauty blog g star raw

A big thanks goes to the lovely Gemma at Modus PR and of course all the wonderful G Star Raw staff for putting on such a great night!

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!

Wednesday, November 24, 2010

Introducing Japanese Student/Blogger Midoh

I first discovered Midoh when she followed me on twitter. She's a really awesome girl and super nice. She's a student from Japan with a huge love of KPop and Hello Kitty :) From the moment we started chatting i've wanted to feature her on my blog as I love her sense of style. She writes a really cute blog that includes posts on Japanese culture, food & fashion. You all should check out her blog - http://mydays-jp.blogspot.com/

If this post is well received I'd love to feature more Japanese bloggers :)







I love her cute but casual style and I love the way she co-ordinates her outfits :)

What do you all think? Should I feature more posts like this.

Fuyume!

Thursday, November 18, 2010

Keep followers when switching from Blogger to Self Hosted Wordpress

As a lot of you know I recently switched from blogger to wordpress. Today I will present a guide on how to do the switch AND keep your followers.

So you’ve made the switch to wordpress but wanna keep your followers.

This post assumes you’ve imported your feed and set up your domain on Wordpress.

Re-directing Feed



Burn your feed to feedburner.

Go to the settings page on your blogger dashboard.

Then click on the site feed tab.

You’ll be presented with a page that looks like this:


Make sure the 1st three options say full.

Then put your feedburner address in the option that says Post Feed Redirect URL.

Now you’ve successfully redirected your feed.

Re-directing Visitors

Now go the templates tab via your blogger dashboard.

Make sure your set to the minima template.

Then click on edit feed.

Replace all the text in the box with the following:

<html>

<head>

<script LANGUAGE="JavaScript">

<!--

window.location.replace("http://your url/");

-->

</script>

<noscript>

<meta http-equiv="Refresh" content="10; URL=http://your url/"/>

<meta http-equiv="expires" content="10"/>

<meta content="301 moved permanently"/>

<META CONTENT="NOINDEX, FOLLOW"/>

<META CONTENT="NOINDEX, FOLLOW"/>

</noscript>

<title>301 moved permanently</title>

</head>

<body>

<center>

<h1>name of your blog</h1>

<p>has been moved to new address</p>

<a href=" http://your blog"> <h1>http://your blog</h1></a>

<p>Sorry for inconvenience... </p>

</center>

</body>

</html>

Make sure to replace the words ‘your blog’ with your wordpress blog url. Also replace ‘name of your blog’ with your blog name (obviously) lol xx

This will ensure your visitors are auto re-directed to your new wordpress blog.

Google Friend Connect



Now we need to add your new url to friendconnect.

Go to http://www.google.com/friendconnect

Log in.

On the left hand side click on gadgets.

Then choose members.

Scroll down to the bottom and click on generate code.

Copy this code and paste it to your clipboard.

Log into your wordpress dashboard.

Under appearance on the left hand side of the page.

Click on widgets.

Find the one titled text and click on add.

In the big box underneath the ‘title’ box paste the code you copied earlier.

Choose the location for the GFC gadget under the box you put the code in.

Then click on save widget.

Redirecting wordpress Feed



The last step is to re-direct your wordpress feed.

Go to plugins – add new.

Search for a plugin titled feedburner configuration.

Install it.

Then activate it.

Find the plugin under the plugins section on the left hand side of your dashboard.

Click on feedburner configuration.

Under redirect feeds here – Fill in with your feedburner address and click save.

There you have it. After you’ve done all this next time you post all your followers should find the post in their google reader or on their blogger dashboard.

If you have any questions or problems just ask!