about - admin
Forum Replies Created
-
Question status -
-
Support StaffKeymaster
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
PedjaFebruary 8, 2015 at 2:56 pm #5151Support StaffKeymasterIt’s done. To change your tagline color (if you want), find
#site-description
in style.css.February 7, 2015 at 3:25 pm #5148Support StaffKeymasterHi 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.
February 4, 2015 at 11:55 am #5138Support StaffKeymasterHi 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.
January 30, 2015 at 12:06 pm #5125Support StaffKeymasterUbuntu 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,
SinisaJanuary 29, 2015 at 4:41 pm #5119Support StaffKeymasterYou 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,
SinisaJanuary 29, 2015 at 9:46 am #5117Support StaffKeymasterGo 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,
SinisaJanuary 29, 2015 at 9:38 am #5116Support StaffKeymasterYou 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,
SinisaJanuary 28, 2015 at 12:19 pm #5113Support StaffKeymasterIf 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. ?>
January 28, 2015 at 12:15 pm #5112Support StaffKeymasterHello 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,
PedjaJanuary 28, 2015 at 1:53 am #5110Support StaffKeymasterHi 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,
SinisaJanuary 27, 2015 at 2:41 pm #5105Support StaffKeymasterHi 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 đ
January 27, 2015 at 1:16 pm #5102Support StaffKeymasterBtw, 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,
SinisaJanuary 27, 2015 at 9:55 am #5100Support StaffKeymasterHi 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,
SinisaJanuary 27, 2015 at 9:49 am #5099