ahmetsali

Forum Replies Created

list of topics you have created till now.

  • ahmetsali
    Keymaster
    ahmetsali
    Keymaster

    I can’t tell what is wrong by looking at screenshot, when you go live, you can post your url here.

    ahmetsali
    Keymaster

    Hi, can you provide a url to see what’s wrong?

    ahmetsali
    Keymaster
    Posted in : Remove page title

    try this custom css;

    .site-header { padding-bottom: 1em;  }
    
    ahmetsali
    Keymaster

    update the code as;

    h1 small { display: none !important; }
    
    ahmetsali
    Keymaster
    Posted in : Remove page title

    Hi, try this custom css;

    .page .entry-header { display: none; }
    
    ahmetsali
    Keymaster

    Hi, i just checked your site on IE8, no errors in console.

    ahmetsali
    Keymaster

    Hi, can you provide a url to see what’s wrong?

    ahmetsali
    Keymaster
    Posted in : Resume link trouble

    Hi, your menu links has full url, they need to be only in #/page-name format, see the post below;

    http://www.pixelwars.org/forums/topic/about-me-page-doesnt-work/

    ahmetsali
    Keymaster

    Hi, image logo supports one link by default and i don’t know much about image maps.

    ahmetsali
    Keymaster

    Hi, this is weird, it works fine on my side. Does this issue also exist on our theme demo site. Also what is your browser version and platform.

    ahmetsali
    Keymaster

    Hi, our theme preview works fine in ie10. I see some html markup errors(unclosed-missclosed tags etc..) when i validated your site. Firstly correct that markup errors, then test it again on ie10.

    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.student.tue.nl%2Fw%2Fs.s.lojko%2F&charset=%28detect+automatically%29&doctype=Inline&group=0

    Hi, paste the code below to the External CSS / JS box in Appearance > Theme Options > Style tab;

    <script>
    jQuery(document).ready(function($) {
        $('input#subject').val('Your fixed subject text here').attr('disabled','disabled');
    });
    </script>
    

    The limit of emails might be related to your server capacity.

    ahmetsali
    Keymaster

    I just checked again, scrolling works works fine on win7 + chrome25 and win8 + chrome22. I didn’t have a chance to test it on win8 + chrome25 yet, when i get the chance i will try to provide a a fix if i detect any issue.

    ahmetsali
    Keymaster

    You need to use inline_video shortcode wherever you insert videos

    [inline_video]Put your iframe code here.[/inline_video]
    
    ahmetsali
    Keymaster

    Hi, please provide a url to see what’s wrong.

    ahmetsali
    Keymaster
    Posted in : Problem with JS

    Hi, can you provide a url to see what’s wrong?

    ahmetsali
    Keymaster

    Hi, try this custom css;

    .readable-content { max-width: 1080px; }
    
    ahmetsali
    Keymaster
    Posted in : Padding

    Hi, try this custom css;

    .middle { padding-bottom: 2em; }
    
    ahmetsali
    Keymaster

    Your site looks same as the theme demo. Header elements are centered only on screens < 960px width.

    ahmetsali
    Keymaster

    can you provide a url?

    ahmetsali
    Keymaster

    Hi, navigate to Appearance > Theme Options > Style tab.

    1-) Check Extra Skin > Overlay

    2-) Upload your image via “Custom Background Image” input. Save settings.

    You can try this custom css code for centering site title;

    #header .title { margin-left:  14%; }
    

    Hi, i just tested on chrome and couldn’t see anything wrong about navigation. Please describe your issue in details and provide screenshots if you can.

    ahmetsali
    Keymaster

    the custom css code below will work for videos on all pages;

    .video-container { max-width: 752px; }
    
    ahmetsali
    Keymaster
    Posted in : Space between widgets

    Hi, try this custom css code;

    #secondary .widget { padding-bottom: 1em; }
    
    ahmetsali
    Keymaster
    Posted in : Retina Logo

    Hi try this one;

    .site-title img { max-width: 600px; }
    @media screen and (max-width: 600px) {
    	.site-title img { max-width: 70%; }
    }
    
    ahmetsali
    Keymaster

    Try this custom css and see if it it works for you;

    .portfolio-single .video-container { max-width: 752px; }
    
    ahmetsali
    Keymaster

    Hi, can you provide a url to see what’s wrong?

    Hi, edit js/main.js and find line: 160, you will see this code block;

    $slider.addClass('ready').flexslider({
    	  pauseOnHover: true,
    	  animation: "slide",
    

    change it to this;

    $slider.addClass('ready').flexslider({
    	  pauseOnHover: true,
    	  animation: "fade",
    
    ahmetsali
    Keymaster
    Posted in : Homepage

    Hi, try this custom css;

    .home #primary .entry-header { display: none; }
    
    ahmetsali
    Keymaster

    Hi, since IE8 doesn’t support CSS3 media queries, layout is fixed to 960px in IE8.

    ahmetsali
    Keymaster

    Actually this one looks better than default one, we can make this default. Thanks for the feedback.

    ahmetsali
    Keymaster

    Hi, try the custom css code below;

    #main.wrapper > .row { max-width: 1080px; }
    
    ahmetsali
    Keymaster
    Posted in : Sidebar width

    since we are using responsive grid in bootstrap, either you will use 4 column for sidebar (default) or 3 column (as i described above), there is no 3.5 column in this grid system; hahaha :)

    Thanks.

    ahmetsali
    Keymaster
    Posted in : Sidebar width

    You can do this with changing columns classes with jquery;

    try adding the code below to the External JavaScript/CSS box under Theme Settings > Style tab.

    <script>
    jQuery(document).ready(function($) {
        $('.content.span8').removeClass('span8').addClass('span9');
        $('#sidebar.span4').removeClass('span4').addClass('span3');
        $('.post-list .post .media-box + .span5').removeClass('span5').addClass('span6');
        $('.post-list .post > .span8').removeClass('span8').addClass('span9');
    });
    </script>
    
    ahmetsali
    Keymaster

    You can add custom fonts via Custom CSS box;

    1 – select your font from google web fonts: http://www.google.com/webfonts

    2 – click “Quick-use” link and “Choose the styles you want” and “Choose the character sets you want (cyrillic)”,

    3 – find ”@import” tab and copy @import code like this: @import url(http://fonts.googleapis.com/css?family=Cuprum&subset=latin,cyrillic);

    4 – find “Integrate the fonts into your CSS:” section and copy font-family code like this: font-family: "Cuprum", sans-serif;

    5 – go to Appearance > Theme Options > Style > Custom CSS and paste your codes like this:

    /* Add new custom fonts */
    @import url(http://fonts.googleapis.com/css?family=Cuprum&subset=latin,cyrillic);
    
    /* Body Font */
    html, button, input, select, textarea, .toggle h4 { font-family: "Cuprum", sans-serif;}
    
    /* Headings */
    h1, h2, h3, h4, h5, h6, .main-navigation ul li, dt { font-family: "Cuprum", sans-serif; }
    
    /* SITE TITLE */
    h1.site-title, h1.site-title a { font-family: "Cuprum", sans-serif; }
    
    ahmetsali
    Keymaster
    Posted in : Few Questions

    Hi,

    1-) We will add lightbox shortcode in the next update, thanks for the feedback.

    2-) Also if you want multiple galleries, you can do this now by;

    – Using built in Gallery post type. Add a new gallery post to create a gallery, then you can add many images inside this gallery post by using “”Images” box. You can repeat this for each gallery.

    ahmetsali
    Keymaster
    Posted in : contact form

    Hi, it works on our server, but anyway i will check contact.php for any server compatibility issue, and release a new update if necessary.

    ahmetsali
    Keymaster
    Posted in : Sidebar width

    Hi, do you want to increase the sidebar width or decrease?

    ahmetsali
    Keymaster
    Posted in : Navigation problems!

    @robjwat

    Try the code below, and make sure you put this code after jquery script;

    $(function() { $("#nav > li").eq(2).addClass("active"); });
    
    ahmetsali
    Keymaster
    Posted in : Padding

    Hi, try this custom css;

    h1.site-title { margin-bottom: .1em; }
    .site-description { margin-top: 1em; }
    .site-header hgroup { padding: 2.5em 0 1em 0; }
    
    ahmetsali
    Keymaster
    Posted in : Linked text bug

    Try the custom css code below;

    .format-link .entry-content a { word-break: normal; }
    
    ahmetsali
    Keymaster
    Posted in : Add a blog?

    It is a different theme “Responsy Wp”, impressivCard WP doesn’t have a blog page.

    ahmetsali
    Keymaster
    Posted in : Menu Bar Shape

    @patsfeir

    Hi, in addition to the custom css code i gave in my post above, try adding this custom css code after;

    #header nav ul span { background: none;}
    #header { padding-top: 0 !important;}
    #header nav ul { margin-top: -0.5em;}
    #header .title { padding-top: 8px;}
    
    ahmetsali
    Keymaster
    Posted in : Navigation problems!

    Hi, sorry i have just seen your reply, you can use this code;

    <script>
    $(function() { $('#nav > li').removeClass('active').eq(2).addClass('active'); });
    </script>
    
    ahmetsali
    Keymaster
    Posted in : Responsy logo text

    Hi, it is “Open Sans” if you select text logo, but if you are asking for the font in the sample logo image it is “Cooper Black” .

    ahmetsali
    Keymaster
    Posted in : Few Questions

    Hi, to hide page titles and center the contact page try this custom css;

    .page .entry-header { display: none; }
    .contact-form, .contact-form input, .contact-form textarea, .page-template-page-contact-php .hentry p { text-align: center; }
    .contact-form label.error { left: 33%; }
    .contact-form .ajax-loader { margin: 1.5em auto 0 auto; }
    .page-template-page-contact-php .hentry { padding-top: 0; }
    
    ahmetsali
    Keymaster

    You can change these texts to lowercase with localization, see documentation > localization section. Or you can make any text lowercase via custom css, but you need to this for each section;

    .about-author h3, #respond h3 { text-transform: lowercase !important; }
    
    ahmetsali
    Keymaster
    Posted in : Adjusting Margins

    I think that looks really bad with almost no white space, you can do this with these custom css;

    .site-header { padding-bottom: 0em; }
    .hentry > h1 { margin 0; }
    h1.site-title a { border-bottom: none; }
    .site-header hgroup { padding: 0em 0 0.5em 0; }
    h1.site-title { line-height: 1; margin-bottom: -0.3em; }
    .readable-content > .hentry { padding: 0.7em 0 2.5em 0; }
    

    Besides that you have some empty “p” tags in your content that makes extra white spaces, you can remove them in Editor’s Text tab.

    ahmetsali
    Keymaster
    Posted in : Adjusting Margins

    I see the same thing, haven’t you noticed that white spaces around header and logo are reduced after custom css code. I can see the difference clearly. Try deleting the custom css and see how it looks without custom css.

Viewing 50 posts - 4,351 through 4,400 (of 4,776 total)