ahmetsali

Forum Replies Created

list of topics you have created till now.

  • ahmetsali
    Keymaster

    Hi, you can align images left/right/center in wordpress’ content editor,

    see this video.

    ahmetsali
    Keymaster

    Hi, try this custom css code;

    .main-navigation ul li { max-height: none; }
    #site-navigation { padding-bottom: 0px; }
    
    ahmetsali
    Keymaster
    Posted in : social icon alignment

    Hi, you can try this custom css code;

    .site-header .social { text-align: right; margin: 0 32px 20px 0;}
    
    ahmetsali
    Keymaster

    Hi,

    1-) try this custom css code

    #commentform textarea {
        width: 100%;
        height: 220px;
    }
    

    2-) try this custom css code;

    @media (min-width: 1200px) { 
    	#secondary .widget { padding-left: 2em; }
    }
    
    ahmetsali
    Keymaster

    images only shrink if their width is bigger than their container width, in your situation it doesn’t shrink since image width is smaller than container width.

    ahmetsali
    Keymaster

    ok, we will fix this in the next update, thanks for the feedback.

    ahmetsali
    Keymaster

    Hi ,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,

    1-) try this custom css code;

    .readable-content {
        max-width: none;
    }
    

    if it doesn’t suit you, provide your page url.

    2-) a-) You can try this custom css code;

    .site-header .row {
        background: #eee;
    }
    

    b-) You can use image logo in the header: Theme Options > General > Image Logo.

    ahmetsali
    Keymaster
    Posted in : Fill page after Open

    Hi, there might be some drawbacks about this approach but here is a starting point for you, you can try this custom css;

    .rm-open .rm-wrapper {
        top: 0;
        bottom: 0;
    }
    .rm-open#rm-container {
        width: 33.3333%;
        max-width: none;
    }
    
    ahmetsali
    Keymaster

    if you want to make your current homepage narrow, try this custom css;

    .readable-content { max-width: 580px; }
    
    ahmetsali
    Keymaster

    try this one;

    body.page-template-page-full-width-php #content > .row-fluid {
        max-width: 1200px;
    }
    

    this works on my side, if you can’t get it work, please provide your page url to see what’s wrong.

    ahmetsali
    Keymaster
    Posted in : BY AUTHOR

    or you can add this at the end of the custom css;

    .entry-meta {
        display: block !important;
    }
    
    ahmetsali
    Keymaster

    all images will be responsive by default.

    ahmetsali
    Keymaster
    Posted in : Gallery Images

    Hi, actually this is how flexslider handles images in various resolutions. But you may try the custom css code below;

    .flexslider .slides img {max-height: 427px; width: auto; margin: 0 auto; }
    
    ahmetsali
    Keymaster

    i see you have used toogle shortcode, use accordion shortcode instead.

    [accordions]
    	[accordion active="active" title="accordion 1"]Put your content here.[/accordion]
    	[accordion title="accordion 2"]Put your content here.[/accordion]
    [/accordions]
     
    active="" ... active keyword is for opened style
     
    title="" ... the caption text of the accordion
    
    ahmetsali
    Keymaster
    Posted in : Archive page 2

    also add this custom css code;

    .post-list .date { display: none; }
    
    ahmetsali
    Keymaster

    Hi, post titles are center aligned by default.

    ahmetsali
    Keymaster

    Hi, there is no vertical align in css in an easy way, but you can make the image look like centered with percentage margin-top as;

    #bulb_before, #bulb_after {
        margin-top: 33%;
    }
    
    ahmetsali
    Keymaster

    Hi, we post answers generally in 24-48 hours.

    now checking your site.

    ahmetsali
    Keymaster

    @Kaneisha

    try this custom css code;

    input[type="image"] {
        border: 0 !important;
        width: auto !important;
    }
    
    ahmetsali
    Keymaster

    i just updated the code in my post above, try again.

    ahmetsali
    Keymaster
    Posted in : Archive page 2

    can you provide the page url where custom css ddin’t effect.

    ahmetsali
    Keymaster

    sorry, the code i provided was for tabs, you can use this for toggles;

    .toggle { font-size: 16px; }
    
    ahmetsali
    Keymaster

    Hi, try this custom css code;

    .page .site-header { padding-bottom: 0.3em; }
    .page .entry-content { padding-top: 0em; }
    
    ahmetsali
    Keymaster

    Hi, put the code below to the External JS box under Theme Options > Style Tab.

    <script>
    (function ($) {
    	$(function() {
    		$('.blog-posts .hentry').each(function(index, element) {
                           $(this).find('.featured-image, .entry-content > .media-wrap, .entry-content > .flexslider').prependTo(this);
                    });
    	});
    })(jQuery);	
    </script>  
    

    and put this to Custom Css box;

    .hentry > .featured-image, .hentry > .media-wrap, .hentry > .flexslider { margin-top:0;  margin-bottom: 16px;  }
    
    ahmetsali
    Keymaster

    hi, can you provide your page url with the accordions?

    ahmetsali
    Keymaster

    Hi, try this custom css;

    .home .post-list { max-width: 780px; margin-left: auto; margin-right: auto; }
    .launch-wrap { text-align: center; }
    
    ahmetsali
    Keymaster

    Hi, this is not easy to do with some lines of code. If you are not familiar with html coding you may consider working with a professional for further customizations.

    ahmetsali
    Keymaster

    Hi, you can add lists with custom bullet icons like this;

    <ul class="icons">
      <li><i class="icon-file"></i>Lists</li>
      <li><i class="icon-pushpin"></i>Buttons</li>
      <li><i class="icon-camera"></i>Button groups</li>
      <li><i class="icon-thumbs-down"></i>Navigation</li>
      <li><i class="icon-leaf"></i>Prepended form inputs</li>
      <li><i class="icon-download-alt"></i>Download icon</li>
    </ul>
    

    You can see available icons at;

    http://fontawesome.io/3.2.1/icons/

    ahmetsali
    Keymaster
    Posted in : Archive page 2

    Hi,

    1-) to remove date on post list

    .blog-posts .post-date { display: none; }
    

    2-) to remove the archives by month, and format.

    .archives-by-month, .archives-by-format { display: none; }
    

    3 and 4-) Put the code below to the External JS box under Theme Options > Style Tab.

    <script>
    	jQuery(document).ready(function($) {
    		$('.last-30-posts h2').text('all posts');
    		$('.archives-by-category').prependTo('.entry-content');
    		});
    </script>  
    
    ahmetsali
    Keymaster
    Posted in : NAVIGATION BAR

    it is working now, you may report the problem to plugin authors if you want to use these plugins.

    i made a mistake in the custom css, that should work;

    h1.site-title img { max-height:  none; }
    
    ahmetsali
    Keymaster
    Posted in : NAVIGATION BAR

    Are you sure? i can still see the share plugin on your posts. And also exclude google profile from sidebar. These two causes the js errors.

    ahmetsali
    Keymaster
    Posted in : 3rd tier main submenu

    Hi, yes it is possible with some custom css code;

    .main-navigation ul ul ul { left: 160px;  right: auto; border-right: 0; border-left: 3px solid #096; }
    .main-navigation ul ul ul:after { top: 1.0em; left: auto; border:0; border-top: 12px solid #096; border-left: 12px solid transparent; right: 100%; margin-right: 3px;}
    

    Hi, about your question one;

    – to disable image scaling for header logo, try this custom css code;

    h1.site-title img { max-height: auto; }
    
    ahmetsali
    Keymaster

    Hi, try this custom css;

    .tabs .tab-content { font-size: 16px;}
    
    ahmetsali
    Keymaster

    Hi, yes it is possible with some javascript code. Put the code below to the External JS box under Theme Options > Style Tab.

    <script>
    	jQuery(document).ready(function($) {
    		$('.rm-button-open').click(function() { 
    				$.fancybox({  
    					type : 'iframe',
    					href : 'http://www.youtube.com/embed/Du8ld5hrqN0?rel=0'
    				 });
    			});
    			
    		});
    </script>
    

    and change href to your video embed url accordingly.

    ahmetsali
    Keymaster
    Posted in : NAVIGATION BAR

    I still see plugin related js errors on your console;

    Uncaught TypeError: Object [object Object] has no method 'on' sharing.js?ver=20121205:50
    Uncaught TypeError: Object [object Object] has no method 'on' gprofiles.js?ver=2013Novaa:2
    

    once disable all plugins then let me test it with all plugins disabled.

    ahmetsali
    Keymaster
    Posted in : Portfolio demo reel

    Hi, you can add it as a x2 size portfolio item and ligthbox video format just like other.

    ahmetsali
    Keymaster
    Posted in : NAVIGATION BAR

    you have some javascript errors on your console, disable all plugins and see if it still occurs.

    ahmetsali
    Keymaster

    ok, this should work;

    #home:after {
    content: "";
    background-image: url('http://www.branddiaries.com/development/wp-content/uploads/2013/11/spiral.png');
    background-position: left top;
    background-repeat: repeat-y;
    width: 44px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -19px;
    z-index: 1000; }
    
    ahmetsali
    Keymaster

    Hi, since this is a responsive theme and container adjusts it’s width and height to different resolutions, there are no exact dimensions.

    ahmetsali
    Keymaster
    Posted in : "OPEN" button

    Hi, try this custom css;

    .ribbon strong { color: #FFF; text-shadow: 0 1px 0 #000; }
    .ribbon-stitches-bottom, .ribbon-stitches-top { border-top-color: rgba(255, 255, 255, 0.25);
       -moz-box-shadow: none;
       -webkit-box-shadow: none;
       box-shadow: none;
    }
    
    ahmetsali
    Keymaster
    Posted in : NAVIGATION BAR

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

    ahmetsali
    Keymaster
    Posted in : Sidebar to big

    @mpan try this custom css code and see if it suits you;

    #primary { border: 1px solid #CCC; padding-right: 30px; padding-left: 30px; padding-bottom: 30px; }
    #secondary { border: 1px solid #CCC; padding-right: 30px; }
    
    ahmetsali
    Keymaster

    it looks like instagram for wordpress plugin adds fancybox css file too, and that makes the conflict i guess. try this custom css code;

    #fancybox-right-ico, #fancybox-left-ico { background-image: none; } 
    #fancybox-right span { right: 20px; }
    #fancybox-left span {left:20px}
    #fancybox-close { width: auto; height: auto; }
    
    ahmetsali
    Keymaster

    Hi, you have markup mistakes in your aside format post titled “SOCIAL NETWORKS & DINNER TABLES”, you have unnecessary pre tags in the editor, remove them and it should go back to normal.

    ahmetsali
    Keymaster

    Hi, ajax doesn’t work on local machines, upload to ftp and it should work.

    ahmetsali
    Keymaster

    Selam :)

    portfolio page is adjusted to be 5 columns in wide screens. But your columns size should always be in even numbers since you are using 2x sizes. So open js/main.js in a text editor and find line : 345-360, you will see this code lines;

    var viewports = [ {
    					width : 1200,
    					columns : 5
    				}, {
    					width : 900,
    					columns : 4
    				}, {
    					width : 500,
    					columns : 3
    				}, { 
    					width : 320,
    					columns : 2
    				}, { 
    					width : 0,
    					columns : 2
    				} ];
    

    change it as ;

    var viewports = [ {
    					width : 768,
    					columns : 4
    				}, {
    					width : 320,
    					columns : 2
    				}, { 
    					width : 0,
    					columns : 1
    				} ];
    
    
    ahmetsali
    Keymaster

    Hi, we have fixed this issue, you can download the latest version from themeforest.

Viewing 50 posts - 4,051 through 4,100 (of 4,778 total)