ahmetsali

Forum Replies Created

list of topics you have created till now.

  • ahmetsali
    Keymaster
    Posted in : Adding a top header

    Hi, you need to edit the mobile nav javascript code also in main.js. It can be possible but it requires more hard work, we can only provide customizations of some lines of code. You can hire someone experienced to do the job for you, if you are not familiar to wordpress-html coding.

    ahmetsali
    Keymaster

    Hi, try this custom css code;

    .entry-title {
        margin-bottom: 0; text-align: left; font-size: 2em;
    }
    
    ahmetsali
    Keymaster

    Hi, try this custom css code;

    /* quote */
    .format-quote:before { font-family: Georgia, "Times New Roman", Times, serif; font-size:5.5em; line-height:1; color: #096; }
    .format-quote blockquote { font-size: 1.6em; margin:0; }
    .format-quote blockquote cite { font-size: .7em; }
    
    ahmetsali
    Keymaster
    Posted in : Editing Text

    Hi, i really didn’t get what you really want. You want big size text on some specific pages? Which text?

    ahmetsali
    Keymaster
    Posted in : Your background image
    ahmetsali
    Keymaster

    Hi, as the cover page container’s dimension changes in different resolutions. it is normal that cover image may change dimension to fit itself to container. I cant see the imdb logo in your site now.

    About videos, i recommend you to use vimeo or youtube, it is much easier. This theme doesn’t have self hosted video solution by default.

    ahmetsali
    Keymaster

    every page has its own unique body class;

    for example;

    http://crocusreview.com/tao-the-path-to-happiness/

    for this page you can use this custom css code;

    .postid-288 h1.entry-title { font-size. 2.4em; }
    
    ahmetsali
    Keymaster

    Hi, i really didn’t work with swf files much, maybe this article would be helpful to you;

    http://www.aleosoft.com/flashtutorial_flashbackground.html

    ahmetsali
    Keymaster

    you can do this with custom css code;

    for example to change size of blog titles, you can use;

    h1.entry-title { font-size. 2.4em; }
    
    ahmetsali
    Keymaster

    Hi,

    1-) 770px X 1090px would be fine.

    2-) Inner page sizes changes on various screen size, resize the browser to see haw it fits to screen.

    3-) You want autoplay on youtube lightbox video?

    ahmetsali
    Keymaster

    send-mail.php comes with downloaded package, and it should be uploaded to server in order to contact form to work. Redownload the package if you don’t have it.

    ahmetsali
    Keymaster
    Posted in : 3D Version in IE

    Hi, since IE doesn’t support css3 3d properties, it is not possible to have 3d layout in IE.

    ahmetsali
    Keymaster

    yes it can be possible with some custom css code, which headlines do you want to modify?

    ahmetsali
    Keymaster

    we will update social icons with a future update.

    ahmetsali
    Keymaster
    Posted in : Image Post CSS

    you can write a specific custom css code for a page, in this case for your main page you can use this custom css code for images;

    .page-id-498 .entry-content img {
       border-radius: 8px; 
    }
    ahmetsali
    Keymaster
    Posted in : Change icon in a list

    here is the updated code;

    .widget_recent_entries ul {
        list-style: disc;
        list-style-position: outside;
        margin-left: 20px;
    }
    .widget_recent_entries ul li {
        padding-left: 2px;
    }
    .widget_recent_entries ul li:before {
        display: none;
    }
    
    ahmetsali
    Keymaster
    Posted in : animation speed

    Hi, try this custom css code;

    .rm-container.rm-open .rm-right { 
    	-webkit-transition: all 1.0s ease-in-out, height 0s;
    	transition: all 1.0s ease-in-out, height 0s;
    	-webkit-transition-delay: 0.2s;
    	transition-delay: 0.2s;
    }
    
    ahmetsali
    Keymaster

    i just checked your site on IE8/9/10, it is working fine.

    ahmetsali
    Keymaster
    Posted in : Gallery not working..

    Hi, your images doesn’t have src attributes so they can’t be viewed. Try reuploading your images.

    ahmetsali
    Keymaster

    this is weird i see our demo site proper in the same res.

    ahmetsali
    Keymaster
    Posted in : Change icon in a list

    i just checked your site, you have an unclosed bracket just before the code i gave you in your custom css.

    h1.site-title { text-align: left;
    

    close this line with a bracket;

    h1.site-title { text-align: left; }
    
    ahmetsali
    Keymaster

    Hi @forsorenda

    i just checked our demo site on IE10/9/8, it is working just fine in classic mode.

    ahmetsali
    Keymaster

    i can see the fontawesome icons on the latest ff v26.

    ahmetsali
    Keymaster
    Posted in : Change icon in a list

    it should be working, can you provide your url?

    ahmetsali
    Keymaster

    you are welcome, we are in 2014 in turkey :)

    ahmetsali
    Keymaster

    ok one more thing before it is done,

    remove the code

    text-indent: -999em;
    

    i added it accidently and edited and removed that piece of code from my post.

    ahmetsali
    Keymaster

    since you deleted and added that menu item, its id has changed, edit the code;

    #menu-item-622 to #menu-item-664

    ahmetsali
    Keymaster

    it looks like you have completely removed that menu item, dont remove it, just leave it’s text blank.

    ahmetsali
    Keymaster

    Hi, try this;

    1-) Remove the text in that menu item “@mattsechrest”

    2-) paste this custom css code to Theme Options > Style > Custom CSS box;

    #menu-item-622 a:before {
        font-family: FontAwesome; 
        font-weight: normal; 
        font-size: 24px;  
        text-align:left; font-style: normal; 
        display: inline-block; text-decoration: inherit;
        content: "\f099";
        margin: -12px 0;
    }
    
    ahmetsali
    Keymaster
    Posted in : Change icon in a list

    Hi, try this custom css code;

    .widget_recent_entries ul {
        list-style: disc;
        list-style-position: inside;
    }
    .widget_recent_entries ul li {
        padding-left: 2px;
    }
    .widget_recent_entries ul li:before {
        display: none;
    }
    
    ahmetsali
    Keymaster

    Hi, you can do this in two steps;

    1-) Paste the code below to the Theme Options > Style > External Js box;

    <script>
    jQuery( document ).ready(function( $ ) {
      $('.site-title a').each(function(){
        var me = $(this)
           , t = me.text().split(' ');
        me.html( '<span>'+t.shift()+'</span> '+t.join(' ') );
      });
    });	
    </script>
    

    2-) Then style with custom css;

    /* first word */
    .site-title a span {
        color: green;
    }
    /* second word */
    .site-title a {
        color: orange;
    }
    
    ahmetsali
    Keymaster

    yes, i added this feature in v1.2 !

    ahmetsali
    Keymaster

    Hi, this is a really weird issue. I have no idea what causes this and searched the web if somenone has reported a similar issue about flexslider, but couldn’t find anything. I will add this to the list and release an update if come up with a solution. Thanks for the feedback.

    ahmetsali
    Keymaster
    Posted in : portfolio

    Hi, please check documentation HTML > Portfolio section.

    ahmetsali
    Keymaster
    Posted in : CV uploading

    Hi, you can place a button to download your pdf file as;

    <a href="url-to-your-cv.pdf" class="button">Button</a>
    
    ahmetsali
    Keymaster
    Posted in : Main Menu Bug

    ok i see the issue now, i will fix it with an update. Thanks for the feedback.

    ahmetsali
    Keymaster
    Posted in : Main Menu Bug

    Hi, can you provide your page url to check what’s wrong.

    ahmetsali
    Keymaster
    Posted in : Space

    Hi, amount of the white spaces are just a part of the design of this theme. Thanks for the feedback.

    ahmetsali
    Keymaster
    Posted in : Masonary don't work

    Hi, you have some markup errors on your post named “RAY BOMB – AFROJACK”

    – Unclosed element u.

    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.jack-pedersen.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0

    Try to correct those markup related errors and try again.

    ahmetsali
    Keymaster
    Posted in : Ribbon

    Hi, i don’t see any ribbon style in Bloggy. Are you sure you have created your topic under correct category?

    Hi, to hide “continue reading” link from quotes, you can try this custom css;

    .format-quote a.more-link { display: none; }

    ahmetsali
    Keymaster

    i just checked our preview site on Safari 7.0 / Mac os maverick and safari 5.1.7 / Win7, and it is working properly on my side.

    ahmetsali
    Keymaster
    Posted in : Gallery on portfolio

    Hi, this is because firefox doesn’t support css3 image filter, nothing to do about it.

    ahmetsali
    Keymaster

    Hi, update your site to v.4.0.5, and let me check your site again to see what’s wrong.

    ahmetsali
    Keymaster
    Posted in : Gallery on portfolio

    don’t forget to update background image url to your desired image url.

    ahmetsali
    Keymaster
    Posted in : Gallery on portfolio

    i just updated the css code on my previous post.

    ahmetsali
    Keymaster
    Posted in : Gallery on portfolio

    just paste it to Theme Options > Style > Custom CSS box.

    ahmetsali
    Keymaster
    Posted in : Gallery on portfolio

    Hi again;

    1-) portfolio hover image color effect achieved with css webkit-filters property and only supported by chrome and opera, on other browsers only hover icon is shown.

    2-) you can add an image to cover footer like this;

    .cover:after {
        content: ""; position: absolute; bottom: 0; left: 0; height: 100px; width: 100%;
        background-image: url(your-cover-footer-image-url-here.jpg);
        background-size: 100% 100%;
    }
    
    ahmetsali
    Keymaster

    no payment needed, i am glad you liked our template.

    ahmetsali
    Keymaster
    Posted in : Blurry Logo

    can you post your url here to see what’s wrong

Viewing 50 posts - 3,951 through 4,000 (of 4,785 total)