about - admin

Forum Replies Created

  • Question status -
  • Support Staff
    Keymaster

    Great! We’re glad to hear that. 🙂

    #5153
    Support Staff
    Keymaster

    Hello Wayan,

    To change the button color and position first you will need to find the following bit of code in the “style.css” file.

    .header-button {
    	display: inline-block;
    	padding: 16px 27px;
    	background: #1aadf1;
    	font: bold 13px/1 'Open Sans', sans-serif;
    	text-transform: uppercase;	
    	color: #fff;
    	float: right;
    	max-width: 50%;
    	cursor: pointer;
    	margin: -11px 0 0px;
    }

    To change color -> the property you will need to modify is the “ background: #1aadf1;

    To change position -> the property you will need to modify is the “ margin: -11px 0 0px;

    Regards
    Pedja

    #5151
    Support Staff
    Keymaster

    It’s done. To change your tagline color (if you want), find #site-description in style.css.

    #5148
    Support Staff
    Keymaster

    Hi Wayan,

    if you still can’t make logo code work, leave me here username and password (mark reply as private), and I’ll do it for you.

    To change the background color of theme, find this in style.css:

    body {
    	background: #fff;  /* Fallback for when there is no custom background color defined. */
    	overflow-x: hidden;
    }

    and change #fff to another hex color code, ie #0f0f0f. You can also select background color for each section if you want, try it out – “C” / Layout Elements / Section / Background color.

    #5138
    Support Staff
    Keymaster

    Hi Wayan,

    there’s no need for those lines, you can delete:

    wp_register_style( ‘font-arial’, ‘https://fonts.googleapis.com/css?family=Arial:700italic,700,400&subset=latin,latin-ext’ );
    wp_enqueue_style( ‘font-arial’ );
    wp_register_style( ‘font-sans-serif’, ‘https://fonts.googleapis.com/css?family=Sans+Serif:400,700&subset=latin,latin-ext’ );
    wp_enqueue_style( ‘font-sans-serif’ ); 

    Arial is a web safe font, and sans serif is font family, and they come with operating system, so no need to load them from Google fonts (they don’t exist there).

    body,
    button,
    input,
    select,
    textarea {
    	color: #666666;
    	font: 700 16px/1.5625 'Merriweather', serif;
    	word-wrap: break-word;	
    }

    Change 700 to 400.

    #5125
    Support Staff
    Keymaster

    Ubuntu is not standard “web safe” font, and it does not exist in all operating systems by default. Here’s a list of web safe fonts that you can use https://www.w3schools.com/cssref/css_websafe_fonts.asp.

    To add Ubuntu font to this theme is bit more complicated, since it needs to be loaded from Google fonts first, but there are 3 versions of Ubuntu font, and 13 variations total of different weights. I would tell you how, but I don’t know which one you want. Go to https://www.google.com/fonts and type Ubuntu in search.

    To add first one, you would go like this – open swt-setup.php from inc folder.
    Find this:

    wp_register_style( 'font-merriweather', 'https://fonts.googleapis.com/css?family=Merriweather:700italic,700,400&subset=latin,latin-ext' );	
    wp_enqueue_style( 'font-merriweather' );	
    

    and replace with this:

    wp_register_style( 'font-ubuntu', 'https://fonts.googleapis.com/css?family=Ubuntu:400,700italic,700' );	
    wp_enqueue_style( 'font-ubuntu' );	
    

    Now, in your modified version of code you should change this:

    font: 700 14px/1.5625 'Ubuntu', serif;
    to this:
    font: 700 14px/1.5625 'Ubuntu', sans-serif;

    Regards,
    Sinisa

    #5119
    Support Staff
    Keymaster

    You can do that in style.css, under “2.0 Typography”.

    
    body,
    button,
    input,
    select,
    textarea {
    	color: #666666;
    	font: 700 16px/1.5625 'Merriweather', serif;
    	word-wrap: break-word;	
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    	font-family: 'Open Sans', sans-serif;
    	font-weight: 700;
    	margin: 0 0 25px 0;
    	color: #000;
    }
    

    Regards,
    Sinisa

    #5117
    Support Staff
    Keymaster

    Go to content/content.php and remove this lines:

    <span <?php hybrid_attr( 'entry-author' ); ?>><?php _e( 'by', 'swt' ); ?> <?php the_author_posts_link(); ?></span>
    and
    <?php comments_popup_link( __( '0', 'swt' ), __( '1', 'swt' ), __( '%', 'swt' ), 'comments-link', __( 'Off', 'swt' ) ); ?>
    

    Please note that both lines appear twice, first for the posts and pages, and second for front page.

    Regards,
    Sinisa

    #5116
    Support Staff
    Keymaster

    You need to remove this line from content.php:
    <?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( 'By [entry-author] on [entry-published format="F d, Y"] [entry-edit-link before=" | "]', hybrid_get_parent_textdomain() ) . '</div>' ); ?>

    Best regards,
    Sinisa

    #5113
    Support Staff
    Keymaster

    If you’re trying to remove both messages (comments are closed, and comments are closed but pingbacks and trackbacks are open), you need to remove this from comments.php:

    
    			<?php if ( pings_open() && !comments_open() ) : ?>
    
    				<p class="comments-closed pings-open">
    					<?php printf( __( 'Comments are closed, but <a href="%1$s" title="Trackback URL for this post">trackbacks</a> and pingbacks are open.', hybrid_get_parent_textdomain() ), get_trackback_url() ); ?>
    				</p><!-- .comments-closed .pings-open -->
    
    			<?php elseif ( !comments_open() ) : ?>
    
    				<p class="comments-closed">
    					<?php _e( 'Comments are closed.', hybrid_get_parent_textdomain() ); ?>
    				</p><!-- .comments-closed -->
    
    			<?php endif; ?>

    However, if you want to turn off all comments, you can install plugin for that: https://wordpress.org/plugins/disable-comments/. If you want to turn comments just on particular pages, go to that page / post and under “Discussion” disable it.

    You can also remove this line from single.php or page.php:
    <?php comments_template( '/comments.php', true ); // Loads the comments.php template. ?>

    #5112
    Support Staff
    Keymaster

    Hello Wayan

    If you still have a “problem” with Ceckito setup -> then you should definitely check out our YouTube channel.

    It’s actually really easy… I’ve made a few tutorials for you to quickly understand the setup process… If you need any further assistance don’t hesitate to ask 🙂

    Regards,
    Pedja

    #5110
    Support Staff
    Keymaster

    Hi Jo,

    for the images change this in style.css:

    
    .hentry .thumbnail, .hentry .medium, .hentry .thumbnail, .hentry .large {
    	padding: 4px;
    	background: #f9f9f9;
    	border: 1px solid #dfdfdf;
    	}
    .entry-content img {
    	max-width: 990px;
    	padding: 4px;
    	background: #fff;
    	border: 1px solid #ddd;
    	}
    to
    
    .hentry .thumbnail, .hentry .medium, .hentry .thumbnail, .hentry .large {
    	padding: 0px;
    	border: 0;
    	}
    .entry-content img {
    	max-width: 990px;
    	padding: 0px;
    	border: 0;
    	}
    

    For the comments text message, change this in comments.php

    
    			<?php if ( pings_open() && !comments_open() ) : ?>
    
    				<p class="comments-closed pings-open">
    					<?php printf( __( 'Comments are closed, but <a href="%1$s" title="Trackback URL for this post">trackbacks</a> and pingbacks are open.', hybrid_get_parent_textdomain() ), get_trackback_url() ); ?>
    				</p><!-- .comments-closed .pings-open -->
    
    			<?php elseif ( !comments_open() ) : ?>
    

    to

    
    			<?php if ( !comments_open() ) : ?>
    

    For the sidebar, I can’t find nothing except this: https://codecanyon.net/item/slick-sidebar-responsive-wordpress-plugin/7230721. You can Google for WordPress sidebar plugin, that can be toggled on and off, there might be something.

    Regards,
    Sinisa

    #5105
    Support Staff
    Keymaster

    Hi Wayan,

    10px separator is to small to notice. Make it for example 50-100px to see the difference. It’s all correct if that’s the way you want it, but this is what I meant actually:

    
    [section center="true" title=" Lombok Way Out Travel Service" color_scheme="color_1"]
    
    Lombok way out tour & travel services: offers various tour package to Lombok island and Komodo island. Feel free to contact us to book your tour packages or free information of hotels booking Lombok, Lombok diving package, snorkeling tour Lombok, Lombok fun fishing, Lombok surfing package, Rinjani trekking package, Lombok car rental, Lombok honeymoon packages, Komodo adventure package, fast boat booking from Bali island to Gili island Lombok.
    [portfolio cats="package" number="4" cols="4"]
    [/section]
    

    Portfolio is inside of [section] now, see the difference. You could also put the slider in separate section (in that case you wouldn’t need [separator size=”10px”], cause section has spacing).

    Example:

    
    [section center="true" color_scheme="color_1"]
    
    [slider auto="true" pause="4000" arrows="true" bullets="true"]
    
    [slide src="https://www.lombok-wayout.com/wp-content/uploads/2015/01/Pantai-Kuta-Lombok.jpg"]
    
    [slide src="https://www.lombok-wayout.com/wp-content/uploads/2015/01/Trekking-Rinjani-Lombok.jpg"]
    
    [/slider]
    
    [/section]
    
    [section center="true" title=" Lombok Way Out Travel Service" color_scheme="color_1"]
    
    Lombok way out tour & travel services: offers various tour package to Lombok island and Komodo island. Feel free to contact us to book your tour packages or free information of hotels booking Lombok, Lombok diving package, snorkeling tour Lombok, Lombok fun fishing, Lombok surfing package, Rinjani trekking package, Lombok car rental, Lombok honeymoon packages, Komodo adventure package, fast boat booking from Bali island to Gili island Lombok.
    [portfolio cats="package" number="4" cols="4"]
    [/section]
    

    Try it out, just for fun at least 🙂

    #5102
    Support Staff
    Keymaster

    Btw, you might want to center slider and portfolio items. In case you don’t know, you can do that.
    Go to “C” again, Layout Elements, Section. Click “Center section content in the middle of the site” and insert.
    After this, just move your slider or portfolio code inside, instead of “Your content here”.

    I hope this helps.

    Regards,
    Sinisa

    #5100
    Support Staff
    Keymaster

    Hi Wayan,

    you just need to re-save your permalinks: https://wordpress.org/plugins/custom-content-portfolio/installation/,
    sorry, I forgot to mention that.

    To add bottom spacing, click on “C” shortcodes, Layout Elements, Separator / Whitespace. Enter amount of pixels you want. That’s it.

    Best regards,
    Sinisa

    #5099
Viewing 15 posts - 76 through 90 (of 163 total)