팁/튜토리얼

구글 커스텀 서치 CSS 수정

2015.12.08 12:22
1,789
0
0

/* Use a different font family for search results */
.gs-title, .gs-snippet {
font-family: courier;
}

/* Add a border between individual search results */
.gs-webResult {
    border: 1px solid #eee;
    padding: 2px;
}

/* Do no display the count of search results */    
.gsc-result-info {
     display: none; 
}

/* Hide the Google branding in search results */
.gcsc-branding {
    display: none; 
}

/* Hide the thumbnail images in search results */
.form .gsc-thumbnail {
    display: none;
}

/* Hide the snippets in Google search results */
.gs-snippet { 

}

/* Change the font size of the title of search results */
.gs-title a { 
    font-size: 14px;  
}

/* Change the font size of snippets inside search results */
.gs-snippet {
    font-size: 12px;
}

/* Google Custom Search highlights matching words in bold, toggle that */
.gs-title b, .gs-snippet b {
    font-weight: normal;
}

/* Do no display the URL of web pages in search results */
.gsc-url-top, .gsc-url-bottom {
    display: none;
}

댓글 0