2016-07-18 11 views
-1

Flexsliderスライドショーのナビゲーション矢印の相対URLが必要です。背景画像の相対URL

次のCSSを別のサイトに適用するにはどうすればよいですか?

.flex-direction-nav a { 
    width: 50px; 
    height: 50px; 
    margin: -20px 0 0; 
    display: block; 
    background: url(https://example.com/images/slideshow-buttons.png) no-repeat 0 0; 
    position: absolute; 
    top: 50%; 
    cursor: pointer; 
    text-indent: -9999px; 
    opacity: 0; 
    -webkit-transition: all .3s ease; 
    z-index:3; 
} 

答えて

0

これは、CSSファイルは、rootまたは別のフォルダにある場合はstyle.cssファイルは

を置かれている場所からの相対です。

それがある場合

example.com/style.cssそれは次のようになります。それは example.com/css/style.cssある

background: url (images/slideshow-buttons.png) no-repeat 0 0;

場合、それは次のようになります。

background: url (../images/slideshow-buttons.png) no-repeat 0 0;

+0

おかげ@Miro。今私はなぜ私がそんなにトラブルを抱えているのか知っています。多くの場合、私はサブドメインであるテストサイトでこの作業をしようとしています。これはjoomlaのインストールでもあるので、cssは特定のテンプレート用のフォルダにファイルします。この場合、example.com/testing/templates/template1/css/flexslider.cssのようになります。今私はこの例のために書きますか? – user2316544