Forum Replies Created

Viewing 15 posts - 1 through 15 (of 48 total)
  • in reply to: Custom font to website #163253
    Rushan4eg
    Member
    Post count: 72
    This reply has been marked as private.
    in reply to: Custom font to website #163243
    Rushan4eg
    Member
    Post count: 72

    Please look up at top of page http://alienvault.su/
    The: “Откройте для себя очень умную безопасность.
    AlienVault обеспечивает все необходимое, для защиты, обнаружения
    & реагирования на современные угрозы в течение нескольких минут.Узнать Подробнее >”
    shows with Serif font. MyseoCyrl500 doesn’t work!(

    in reply to: Custom font to website #163232
    Rushan4eg
    Member
    Post count: 72
    /* #Default @font-face
    ================================================== */
    
    @font-face {
        font-family: 'source_sans_proregular';
        src: url('css/font/sourcesanspro-regular-webfont.eot');
        src: url('css/font/sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'),
             url('css/font/sourcesanspro-regular-webfont.woff') format('woff'),
             url('css/font/sourcesanspro-regular-webfont.ttf') format('truetype'),
             url('css/font/sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg');
        font-weight: normal;
        font-style: normal;
    
    }
    @font-face {
        font-family: 'source_sans_probold';
        src: url('css/font/sourcesanspro-bold-webfont.eot');
        src: url('css/font/sourcesanspro-bold-webfont.eot?#iefix') format('embedded-opentype'),
             url('css/font/sourcesanspro-bold-webfont.woff') format('woff'),
             url('css/font/sourcesanspro-bold-webfont.ttf') format('truetype'),
             url('css/font/sourcesanspro-bold-webfont.svg#source_sans_probold') format('svg');
        font-weight: normal;
        font-style: normal;
    
    }
    @font-face {
        font-family: 'Museo500Regular';
        src: url('css/font/Museo500-Regular-webfont.eot');
        src: url('css/font/Museo500-Regular-webfont.eot?#iefix') format('embedded-opentype'),
             url('css/font/Museo500-Regular-webfont.woff') format('woff'),
             url('css/font/Museo500-Regular-webfont.ttf') format('truetype'),
             url('css/font/Museo500-Regular-webfont.svg#Museo300Regular') format('svg');
        font-weight: normal;
        font-style: normal;
    
    }
    @font-face {
        font-family: 'museo100';
        src: url('css/font/Museo100-webfont.eot');
        src: url('css/font/Museo100-webfont.eot?#iefix') format('embedded-opentype'),
             url('css/font/Museo100-webfont.woff2') format('woff2'),
             url('css/font/Museo100-webfont.woff') format('woff'),
             url('css/font/Museo100-webfont.ttf') format('truetype'),
             url('css/font/Museo Cyrl 100-webfont.svg#museo100') format('svg');
        font-weight: normal;
        font-style: normal;
    
    }
    @font-face {
        font-family: 'museo500';
        src: url('css/font/Museo500-webfont.eot');
        src: url('css/font/Museo500-webfont.eot?#iefix') format('embedded-opentype'),
             url('css/font/Museo500-webfont.woff2') format('woff2'),
             url('css/font/Museo500-webfont.woff') format('woff'),
             url('css/font/Museo500-webfont.ttf') format('truetype'),
             url('css/font/Museo500-webfont.svg#museo500') format('svg');
        font-weight: normal;
        font-style: normal;
    
    }
    in reply to: Element beetween 2 rows or image over rows? #154497
    Rushan4eg
    Member
    Post count: 72

    I tryed to add via Google Developer editor:

     <div class="row"></div>
    <div style="position:relative; z-index=999"><img src="source_image"></div>
     <div class="row"></div>

    and then make posistion parameters to element.
    but it doesn’t works

    in reply to: How to add custom font to revolution slider? #154486
    Rushan4eg
    Member
    Post count: 72

    All works! Thanks!

    in reply to: How to add custom font to revolution slider? #152949
    Rushan4eg
    Member
    Post count: 72

    I found it! Thanks! All works perfectly.

    in reply to: Custom button animation #152809
    Rushan4eg
    Member
    Post count: 72

    I found a way)
    just added to css:

        -webkit-transition: none !important; 
        -moz-transition: none !important;
        transition: none !important;
    
    in reply to: How to add custom font to revolution slider? #152800
    Rushan4eg
    Member
    Post count: 72

    Thanks! But where i can find page-id? 🙂
    I see only page URL and name…

    in reply to: Custom button animation #152799
    Rushan4eg
    Member
    Post count: 72

    Ok. But the problem in Standart theme animation, which overlaps or sets a style of animation over my personal.

    Myabe you can find way to set off theme animations for custom button element?
    My custom button has css code

    .button-trial
    {
        padding: 15px 37px 15px 20px;
        background-color: #6CC221;
        color: #FFF;
        font-family: "Verdana";
        font-size: 16px;
    /*  font-weight: 600; */
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    border: 0px;
        text-transform:uppercase;
        text-align:center;
        font-size:18px;
    }

    and

    .button-trial:hover
    {
    background:#488613;
    background:-moz-linear-gradient(top, #6cc221 1%, #488613 100%);
    background:-webkit-gradient(linear, left top, left bottom, color-stop(1%,#6cc221), color-stop(100%,#488613));
    background:-webkit-linear-gradient(top, #6cc221 1%,#488613 100%);
    background:-o-linear-gradient(top, #6cc221 1%,#488613 100%);
    background:-ms-linear-gradient(top, #6cc221 1%,#488613 100%);
    background:linear-gradient(to bottom, #6cc221 1%,#488613 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#6cc221', endColorstr='#488613',GradientType=0 )
    }

    What to add to set off theme’s button animation?

    Thanks!

    in reply to: Custom button animation #152771
    Rushan4eg
    Member
    Post count: 72
    This reply has been marked as private.
    in reply to: How to add custom font to revolution slider? #152763
    Rushan4eg
    Member
    Post count: 72

    For a full content of page. Like a font style of all <p> on a one page.
    For example: i want to use mycustom fint Coolvetica on a Contact page only.
    Thx

    in reply to: How to add custom font to revolution slider? #151240
    Rushan4eg
    Member
    Post count: 72

    Also one, maybe you know how to use custom font only on 1 page? or only on 3-4 pages?

    It will be great if you tell me.

    Thanks!

    in reply to: How to add custom font to revolution slider? #151235
    Rushan4eg
    Member
    Post count: 72

    Thanks! Now it works!

    in reply to: How to add custom font to revolution slider? #150943
    Rushan4eg
    Member
    Post count: 72
    This reply has been marked as private.
    in reply to: How to add custom font to revolution slider? #150798
    Rushan4eg
    Member
    Post count: 72

    Mohammad, thanks. I just tried to add font again.
    I downloaded 100% correct woof font type of another forn, but it doesn’t works too.
    Can you help me solve this ussie?

Viewing 15 posts - 1 through 15 (of 48 total)