Csdn blog usage Summary

Source: Internet
Author: User

Csdnblog usage (unofficial, continuous update) (updated twice)

Http://blog.csdn.net/upwaker/archive/2004/06/25/26866.aspx

Content:

I remember reading an article asking how to use a blog. I am also a newbie, but I have found some usage methods and I will introduce them to you. Don't laugh at me, newbie.

1. Write an article. Before creating an album, you must edit the category. After writing an article, select the category of your article.

2. as for the classification of the document center, many people do not understand why their posts are posted in other columns and others are posted in the summary column. this is actually your choice. after writing the article, note that

In a word, "if you want to publish to the csdn document center at the same time, select the following categories (multiple options can be selected)", click the next button, and the options are displayed. I don't need to talk about the rest.

.

3. you can write your own contact information in the static news bar of the page, and the content on your blog will appear in the bulletin board. A picture is displayed on the bulletin board by yourself on the static news bar.

I don't know how to write an HTML file. If you ask DEver to go to Kazakhstan, remember to ask. Come back and tell me.

4. on the configuration page, you can change the CSS of your blog (I think it is skin, similar to QQ skin). There are two methods: (1) select from the CSS file provided by the system, it is equivalent to selecting the page style; (2)

Write a CSS file in the bar of the custom CSS file. This is more difficult (I won't do it anyway .)

5. you can prevent some of your images from being moved to the album by creating a category first, and then clicking the downward button on the right of "add image" to browse the images on your hard disk, add.

6. Add the image used in the text to the album first, and then write the URL in the image position in the text.

7. track principle (tinyfool's original saying, don't ask for copyright): "trackback is a blog protocol. The details are complicated. Simply put, someone has referenced your file.

And comment on it. If you use a blog, you can create a trackback based on his reference. Then, you will know that you have updated this blog, he updates his

Reference, you will also know, and the current environment is not standardized, trackback implementation between different systems is not good, so it is not easy to test ."

8. The most popular post in 48 hours is listed based on the page views and the system's automatic ranking. If your article is suddenly shocked and the number of views reaches two hundred, it is estimated that there will be no problem.

9. Add the counter method on the csdnblog (copyright to Hao ):

What if you want to add a personalized counter on your blog page? You can read this article I wrote.

Add counters to your blog to count the traffic

How many visits does my blog have? How can I add counters to my blog? Now I will teach you how to do this.

Check the counters on my blog.

Http://blog.csdn.net/hbzxf/

In fact, it is very easy to add counters to your blog. First, you need to find your own counters. There are many keywords to search for 'counters 'on Baidu.com. You can pick a favorite one.

Huan, after the application is complete, you will be given a piece of code. Now you only need to put this piece of code (usually JavaScript scripts) paste it to the "static News" text box in the blog management configuration.

, Save the page, and check your homepage again to see if your counter exists.

We hope csdnblog will not cancel support for JavaScript scripts.

10. Add the following picture to the announcement:

The SRC part is the image address (provided by DEver)

 

Well, let's write so much about it first. I'll just get down to it. I'm smiling and smiling. I 've found more ways to add.

(The Principles of customized CSS and track are explained by tinyfool and upwaker .)

(The method for adding a counter is provided by Hao)

(DEver explains how to add images to the announcement board .)

Create a custom csdnblog skin

Http://blog.csdn.net/hbzxf/archive/2004/06/27/27879.aspx

Create a custom csdnblog skin

Hbzxf (Hao)
Http://blog.csdn.net/hbzxf/

If you already have a more personalized counter, I will teach you how to create a custom skin function for csdnblog.

For a personalized counter, refer to another article I wrote.

About Adding counters to csdnblog
Http://blog.csdn.net/hbzxf/archive/2004/06/26/27040.aspx

1. Use the system-defined skin
The system has provided several defined skin interfaces for us. We can select the one we like through the 'option '-'configuration'-'skin.

2. Custom Skin

The following describes how to change the cogitation skin.

1. Options-configuration-skin-select cogitation

2. csdnblog uses http://blog.csdn.net/skins/cogitation/style.cssas the sample table file by default (how do I know, huh, huh, there is in the source code)

3. Open http://blog.csdn.net/skins/cogitation/style.cssthrough notepad or other editing tools to see the following content (screenshot part)

. Headertitles A: visited,
. Headertitles A: active,
. Headertitles A: link,
. Headertitles A: hover
{
Color: white;
Text-Decoration: none;
Font-size:. 75em;
Font-weight: normal;
}

. Headerbar
{
Font-weight: normal;
Font-size: 8pt;
Border-collapse: collapse;
Background-image: URL (images/bluetabback.jpg );
Background-repeat: Repeat-X;
}

. Headerbar A: visited,
. Headerbar A: active,
. Headerbar A: Link
{
Color: whitesmoke;
Text-Decoration: none;
Font-weight: normal;
}

. Headerbartab
{
Background-image: URL (images/bluetabface.jpg );
Background-repeat: Repeat-X;
Border-collapse: collapse;
Padding: 0px;
}

. Blogstatsbar
{
Text-align: right;
Font-weight: normal;
Font-size: 7pt;
Color: Silver;
Border-collapse: collapse;
}

4. Now let's redefine # top, # top defines the layout top style

The original style content is as follows:

# Top
{
Background-image: URL (images/bluetabbackground.gif );
Background-repeat: Repeat;
Color: whitesmoke;
Border-top: 4px solid black;
Border-bottom: 4px solid black;
Padding: 0px;
Margin: 0px;
}

Check the source code of your csdnblog and find that # The top application is located as follows:

<Div id = "TOP">
 
<Div>
<Table>
<Tr>
<TD class = "headertitles">
<H1> <a id = "header1_headertitle" class = "headermaintitle" href = "/hbzxf/"> hbzxf </a> <P id = "tagline"> there are more than one memories that need to be reversed. Maybe this is the philosophy of life. </P>
</TD>
</Tr>
</Table>
</Div>

The new style is as follows: (we need to modify the background image now)

# Top
{
Background-image: URL (images/bluetabbackground.gif); // you can change the background image URL to the position of your own image.
Background-repeat: Repeat;
Color: whitesmoke;
Border-top: 4px solid black;
Border-bottom: 4px solid black;
Padding: 0px;
Margin: 0px;
}

5. paste the defined style to 'option'-'configuration'-'custom CSS selector'

6. Save the changed configuration and check the page of your csdnblog. Is it a custom image?

7. Follow these steps to modify each other one by one to create a distinctive and personalized csdnblog.

About Adding counters to csdnblog

Http://blog.csdn.net/hbzxf/archive/2004/06/26/27040.aspx

What if you want to add a personalized counter on your blog page? You can read this article I wrote.

Add counters to your blog to count the traffic

How many visits does my blog have? How can I add counters to my blog? Now I will teach you how to do this.

Check the counters on my blog.

Http://blog.csdn.net/hbzxf/

In fact, it is very easy to add counters to your blog. First, you need to find your own counters. There are many keywords to search for 'counters 'on Baidu.com. You can pick a favorite one.

Huan, after the application is complete, you will be given a piece of code. Now you only need to put this piece of code (usually JavaScript scripts) paste it to the "static News" text box in the blog management configuration.

, Save the page, and check your homepage again to see if your counter exists.

We hope csdnblog will not cancel support for JavaScript scripts.

 

You can apply for a counter at http://laoan.com/counters/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.