1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet) (No entanto Ratings)
Loading ... Loading ... Carregando ...

Controlling transparency / opacity in your Myspace layout Controlar transparência / opacidade em seu Myspace layout

This lesson assumes that you already have a CSS layout for your myspace page and need to change the transparency of a section. Esta lição presume que você já tem um CSS layout para o myspace página e necessidade de mudar a transparência de uma seção. This lesson also assumes that you have at least introductory experience with Cascading Style Sheets Essa lição também assume que você tem pelo menos introdutório experiência com Cascading Style Sheets

Transparency is a popular way to decorate a page, both in myspace and with other popular services. A transparência é uma forma popular para decorar uma página, tanto no myspace e com outros serviços populares. It is fairly easy to do as long as you keep a few details in mind : É bastante fácil de fazer, desde que você mantenha em mente alguns detalhes:

  1. Know what the code is! Sabe o que é o código!
  2. Know exactly what you want to make transparent Saber exatamente o que você deseja tornar transparente
  3. Know how transparent you want to make it Know how transparente que pretende torná-la
  4. Remember to set code for both internet explorer and mozilla type browsers Lembre-se de definir o código para ambas Internet Explorer e Mozilla tipo navegadores

1 - Know what the code is 1 - Saber o que o código é
float:left;
filter:alpha(opacity=80);
-moz-opacity:.80;
opacity:.80;

There are 4 lines to this. Há 4 linhas para esta. The first is the placement. A primeira é o posicionamento. You have to set a placement for this transparency / opacity change to work. Tem de definir um posicionamento para esta transparência / opacidade mudança para o trabalho.

We used float:left; This works for IE and Mozilla / Firefox. Nós usamos float: left; Isto funciona para IE e Mozilla / Firefox.

Because you want your code to work on multiple browsers - use all 3 versions of this code Porque você quer que seu código de trabalhar em vários navegadores - utilizar todas as 3 versões deste código

float:left;
filter:alpha(opacity=80);
-moz-opacity:.80;
opacity:.80;

You can tweak those numbers to get different effects. É possível astúcia para obter esses números diferentes efeitos. Just note that opacity =100 means it’s opaque. Basta notar que a opacidade = 100 significa que é opaco.
2 - Knowing what to make transparent 2 - Saber o que fazer transparente

This code goes within the { } for your CSS definition. Este código vai dentro do () para sua definição CSS. You most likely won’t want to make your entire layout transparent - although there are some cases where this might be appealing. Você muito provavelmente não vai querer fazer sua inteira disposição transparente - embora haja alguns casos em que isso poderia ser motivador. For example : Por exemplo:

To make a specific table content transparent place your code within the CSS definition for those tables. Para fazer uma tabela específica conteúdo transparente lugar dentro do seu código CSS para a definição desses quadros.

eg for your myspace tables por exemplo, para os seus quadros myspace

table table table { mesa mesa mesa (

float:left; float: left;
filter:alpha(opacity=80); filtro: alpha (opacidade = 80);
-moz-opacity:.80; -moz-opacidade: ,80;
opacity:.80; opacidade: ,80;

} )

3 - Know how transparent to make this 3 - Saber como fazer isto transparente

This is entirely subjective. Isto é totalmente subjetivo. You simply need to tinker with the numbers to figure out how transparent to make it. Você só precisa de mexer com os números para descobrir como a torná-la transparente. Just remember that # opacity = 100 - opacity transparency. Basta lembrar que # opacidade = 100 - opacidade transparência. Therefore 30 % opacity = 70 % transparent Portanto 30% de opacidade = 70% transparente

4 - Remember to set code for both internet explorer and mozilla type browsers 4 - Lembre-se de definir o código para ambas Internet Explorer e Mozilla tipo navegadores

The code listed above covers both IE and Mozilla Firefox. O código listado acima abrange o IE e Mozilla Firefox. It is somewhat redundant but it is worth keeping. É um pouco redundante, mas vale a pena manter.

Do not forget to assign the class to your element or this won’t work! Não te esqueças de atribuir a classe para o seu elemento ou esta não funciona!

css code: css código:

<style type=”text/css”> <style type="text/css">
.testtable { . testtable (
float:left; float: left;
filter:alpha(opacity=50); filtro: alpha (opacidade = 50);
-moz-opacity:.50; -moz-opacidade: ,50;
opacity:.50; opacidade: ,50;

} )
</style> </ style>

HTML CODE : Código HTML:

<table width=”50%” border=”0″ class=”testtable” > <table width="50%" border="0" class="testtable">
<tr>
<td><strong>This is the text in this table </strong></td> <td> <strong> Este é o texto nesta tabela </ strong> </ td>
</tr> </ tr>
<tr>
<td><img src=”/images/scrollingimage.jpg” width=”466″ height=”206″></td> <td> <img src="/images/scrollingimage.jpg" width="466" height="206"> </ td>
</tr> </ tr>
<tr>
<td>This is at 50 % opacity </td> <td> Esta é a 50% de opacidade </ td>
</tr> </ tr>
</table> </ table>

We hope you will find this useful. Nós esperamos que você vai encontrar este útil. This is another example of how versatile CSS can be for designing your page layouts. Este é outro exemplo de como o CSS pode ser versátil para projetar a sua página layouts.

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet) (No entanto Ratings)
Loading ... Loading ... Carregando ...

How to install a digitalicing.com layout on your myspace page Como instalar um layout digitalicing.com no seu myspace página

The first thing that you need to do is pick the myspace layout that you like. A primeira coisa que você precisa fazer é escolher o myspace layout que você quiser. You can find them by clicking here. www.digitalicing.com Você pode encontrá-los clicando aqui. Www.digitalicing.com

Once you have picked a layout that you like, highlight the code. Depois de ter escolhido um layout que você quiser, destacar o código.
Highlight Myspace Code

Once you have highlighted the code,copy ( pressing ctrl C ) the code to your clipboard. Depois de ter realçado o código, copiar (Ctrl C) o código a sua prancheta.

Now that you have copied the HTML that you need, log into your Myspace.com account. Agora que você copiou o código HTML que você precisa, acesse a sua conta Myspace.com. You will want to Edit your profile Você vai querer editar o seu perfil

Edit your myspace profile

After you click on the option to edit your profile, go to the “About Me” section. Depois de clicar sobre a opção de editar o seu perfil, vá para a seção "Sobre Mim" deste artigo. You need to paste the code in the very top of this section. Você precisará colar o código no próprio topo desta secção. Do not place any text before this code. Não coloque nenhum texto antes de este código. Any text in your about me area that you would like to add should be added after the HTML code. Qualquer texto no seu domínio sobre mim que você gostaria de adicionar deve ser adicionado após o código HTML. To paste the code - either right click and choose paste or press ctrl V to paste the text. Para colar o código - ou botão direito e escolha Colar ou pressione Ctrl V para colar o texto.

Pasting layout code to myspace

You are almost done! Você está quase acabando! Scroll to the very bottom of your page. Desloque-se para a parte inferior de sua página. You will see an option to save all changes. Você verá uma opção para salvar todas as mudanças. Click on Save all changes Clique em Salvar todas as alterações

Save changes to Myspace

Once you do this - you are done! Depois de fazer isso - está pronto! It’s that easy! É muito simples! We hope you enjoy! Esperamos que você goste!


1 Star2 Stars3 Stars4 Stars5 Stars ( 2 votes, average: 3 out of 5) (2 votos, média: 3 em 5)
Loading ... Loading ... Carregando ...

Welcome to the Freelogomakers Category Bem-vindo ao Freelogomakers Categoria

This category will contain information on thefreelogomakers.com. Esta categoria irá conter informação sobre thefreelogomakers.com. Content here will be targeted towards the site allowing users to share all kinds of information. Conteúdo aqui será direccionado para o site que permite aos usuários compartilhar qualquer tipo de informação.