Mehmet S.

Forum Replies Created

list of topics you have created till now.

  • Mehmet S.
    Keymaster

    Use Text Widget in Contact Page Sidebar.

    Mehmet S.
    Keymaster
    Posted in : Some Questions..

    Did you test the portfolio page on all browsers.

    Mehmet S.
    Keymaster

    – Open book.ccs file under css folder,

    – Find the opening codes:

    .rm-container.rm-open .rm-cover {
    	-webkit-transform: rotateY(-180deg);
    	-webkit-transition-delay: 0s;
    	-moz-transform: rotateY(-180deg);
    	-moz-transition-delay: 0s;
    	-o-transform: rotateY(-180deg);
    	-o-transition-delay: 0s;
    	-ms-transform: rotateY(-180deg);
    	-ms-transition-delay: 0s;
    	transform: rotateY(-180deg);
    	transition-delay: 0s;
    }
    
    .rm-container.rm-open .rm-right {
    	-webkit-transform: rotateY(180deg);
    	-webkit-transition-delay: 0.2s;
    	-moz-transform: rotateY(180deg);
    	-moz-transition-delay: 0.2s;
    	-o-transform: rotateY(180deg);
    	-o-transition-delay: 0.2s;
    	-ms-transform: rotateY(180deg);
    	-ms-transition-delay: 0.2s;
    	transform: rotateY(180deg);
    	transition-delay: 0.2s;
    }
    

    – Change the delay values.

    Mehmet S.
    Keymaster

    Switch to “Text” tab of content editor of your homepage and remove pre tags.

    – Remove these:

    <pre> and </pre>

    Mehmet S.
    Keymaster
    Posted in : Responsy slider

    Paste to Theme Settings > Style > Custom CSS:

    .flexslider { text-align: center; }
    
    Mehmet S.
    Keymaster

    Add target parameter to [button] shortcode:

    – Go to Appearance > Editor > functions.php,

    – Find [button] shortcode code lines:

    function button( $atts, $content = null )
    {
    	extract( shortcode_atts( array( 'button_text' => 'Button',
    									'bold_text' => '',
    									'button_type' => 'btn-default',
    									'button_size' => '',
    									'button_link' => '#' ), $atts ) );
    	
    	if ( $bold_text == "yes" )
    	{
    		$button_text_out =  "<b>$button_text</b>";
    	}
    	else
    	{
    		$button_text_out =  "$button_text";
    	}
    	
    	$button =  '<a class="btn ' . $button_type . ' ' . $button_size . '" href="' . $button_link . '">' . $button_text_out . '</a>';
    	
    	return $button;
    }
    
    add_shortcode('button', 'button');
    

    – Add the parameter:

    function button( $atts, $content = null )
    {
    	extract( shortcode_atts( array( 'button_text' => 'Button', 'target' => "",
    									'bold_text' => '',
    									'button_type' => 'btn-default',
    									'button_size' => '',
    									'button_link' => '#' ), $atts ) );
    	
    	if ( $bold_text == "yes" )
    	{
    		$button_text_out =  "<b>$button_text</b>";
    	}
    	else
    	{
    		$button_text_out =  "$button_text";
    	}
    	
    	$button =  '<a ' . $target . ' class="btn ' . $button_type . ' ' . $button_size . '" href="' . $button_link . '">' . $button_text_out . '</a>';
    	
    	return $button;
    }
    
    add_shortcode('button', 'button');
    

    Button shortcode:

    [button target="_blank" button_text="My button" button_link="http://www.example.com"]
    
    Mehmet S.
    Keymaster
    Mehmet S.
    Keymaster

    Re-install the theme.

    Mehmet S.
    Keymaster
    Posted in : Lightbox doesn't work

    Use embed url.

    Mehmet S.
    Keymaster

    Good luck :)

    Mehmet S.
    Keymaster

    This is not a problem. IE browser does not support 3D technology.

    Mehmet S.
    Keymaster
    Posted in : Portfolio Won't Open

    It is weird. Can you test the demo site on your side?

    Mehmet S.
    Keymaster
    Posted in : Change Portfolio Page

    This is not possible by default, needs more further customization, you may consider working with a professional, if you are not familiar to WordPress coding.

    Mehmet S.
    Keymaster
    Posted in : Twitter widget

    Before the end date of the api.

    Mehmet S.
    Keymaster

    You can use alternative method:

    – Upload your image to the Media Library, copy image File URL ( not browser address bar ) and paste it to url field in the theme options page.


    Mehmet S.
    Keymaster
    Posted in : competibility issue

    The demo site is good on my side. (Windows 7)

    Mehmet S.
    Keymaster
    Posted in : Duplicate Tite Tags

    Paste to Theme Options > Style > Custom CSS:

    .site-header { padding-bottom: 0px; }
    
    Mehmet S.
    Keymaster
    Posted in : Some Questions..

    – Go to Appearance > Editor > header.php,

    – Find this:

    data-safeMod="false"
    

    – Set its value to true

    data-safeMod="true"
    
    Mehmet S.
    Keymaster
    Posted in : Ribbon Style

    For close button:

    – Paste to Theme Options > Style > Custom CSS:

    .rm-close { border-bottom: 1px dashed #888; }
    .rm-close:after,
    .rm-close:before
    {
    border-top: 4px solid #333;
    margin-top: 1px;
    width: 25px;
    }
    

    For open button:

    – Paste to Theme Options > Style > Custom CSS:

    .ribbon:before { border-left-color: #D64B4B; }
    
    Mehmet S.
    Keymaster
    Posted in : Responsy slider

    The documentation is in the downloaded package.

    Mehmet S.
    Keymaster
    Posted in : Responsy slider

    Please read the theme documentation.

    Mehmet S.
    Keymaster

    Please read the theme documentation carefully.

    Mehmet S.
    Keymaster
    Mehmet S.
    Keymaster
    Posted in : Blog version

    The documentation is the help file. Please open it in your browser and read carefully.

    Mehmet S.
    Keymaster

    – Go to Appearance > Editor > index.php,

    – Find the pagination code lines:

    echo '<div class="pagination-wrap">';
    	oxo_pagination( array() );
    echo '</div>';
    

    – Cut them,

    – Paste before the if ( have_posts() ) : line:

    – Finally:

    <?php
    	echo '<div class="pagination-wrap">';
    		oxo_pagination( array() );
    	echo '</div>';
    
    	if ( have_posts() ) :
    
    Mehmet S.
    Keymaster
    Posted in : Social media icons

    – Please write full url ( http:// )

    Example:

    [social_icons]
    	[social_icon type="facebook" url="http://www.facebook.com/username"]
    	[social_icon type="twitter" url="http://twitter.com/username"]
    	[social_icon type="pinterest" url="http://pinterest.com/username"]
    	[social_icon type="linkedin" url="http://www.linkedin.com"]
    [/social_icons]
    
    Mehmet S.
    Keymaster

    Thanks brunomars.

    Mehmet S.
    Keymaster

    The documentation is that “Help” file. Please open the help file and read carefully.

    Mehmet S.
    Keymaster

    I do not have a static IP, so do not see your site in your image. Email me your log-in info, will check your site in Firefox.

    http://www.pixelwars.org/contact/

    Mehmet S.
    Keymaster

    Can you provide your url?

    Mehmet S.
    Keymaster

    There is unwanted image data in that page’s content.

    – Go to your user profile,

    – Check the “Visual Editor” option to disable it,

    – Go to your page to edit.

    Mehmet S.
    Keymaster

    Please set my user role to Admin. I do not have permission to access the pages in restricted user role.

    Mehmet S.
    Keymaster

    There is a “Documentation” folder in the downloaded package.

    – Documentation > Customization > Localization.

    Mehmet S.
    Keymaster
    Posted in : Social media icons

    Please read the theme documentation.

    – Go to Documentation > Shortcodes > Social Icons.

    Mehmet S.
    Keymaster

    Paste to Theme Options > Style > Custom CSS:

    .blog-masonry .entry-content { display: none; }
    
    Mehmet S.
    Keymaster
    Posted in : Duplicate Tite Tags

    A category and a tag have the same name (slug).

    Mehmet S.
    Keymaster
    Mehmet S.
    Keymaster
    Posted in : Not working in Safari

    Your site is looking very good, like a popular magazine cover.

    Mehmet S.
    Keymaster
    Posted in : Blog version

    – I’m working all day to add a blog.

    – Please read localization section in the documentation.

    Mehmet S.
    Keymaster
    Posted in : Shortcodes query

    A SoundCloud embed url like this one: http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F207988&

    Example:

    [pf_lightbox_audio title="Soundcloud embed" url="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F207988&"]
    

    Go to Theme Options > Style > Footer Widget Locations > No > Save.

    Mehmet S.
    Keymaster
    Posted in : COVER PAGE IMAGE SIZE

    The images in the demo site:

    – Front Cover Image: (770×1090)px

    – Back Cover Image: (842×1191)px

    Mehmet S.
    Keymaster

    You can change portfolio page title via localization method.

    – Go to Documentation > Localization.

    Mehmet S.
    Keymaster
    Posted in : competibility issue

    You can upload it to http://droplr.com

    Mehmet S.
    Keymaster

    You can trust me, I want to help you. I do not understand the problem in the images.

    Create a temporarily new user for me, I will check your site that what is the matter.

    http://www.pixelwars.org/contact/

    Mehmet S.
    Keymaster
    Posted in : Homepage setting

    Done.

    Mehmet S.
    Keymaster
    Posted in : Spacing on POST

    Paste to Theme Options > Style > Custom CSS:

    .blog-single .entry-meta { margin-top: 0em; padding-bottom: 0em; }
    
    Mehmet S.
    Keymaster

    Also emailed back to you my IP. I do not see your site content.

    Mehmet S.
    Keymaster
    Posted in : Questions to update

    – Install the new version in the regular way.

    – Go to FTP copy and replace the ( .po & .mo ) files.

    Mehmet S.
    Keymaster
    Posted in : Mobile Comments

    Paste to Theme Options > Style > Custom CSS:

    @media (max-width: 767px)
    {
    .blog-posts .entry-meta { display: block; }
    }
    
Viewing 50 posts - 4,101 through 4,150 (of 4,793 total)