Misam Saki
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Dinky] Blog Roll doesn t show summary,only full post.Hi
You must separate text (summary and continue) by more button in tinymce editor ??Forum: Themes and Templates
In reply to: [Dinky] Adding a left sidebarYou must do many changes.
1. Define new sidebar in theme functions
2. Create sidebar-SIDEBARNAME.php file and fill it.
3. Put the sidebar by this functions: get_sidebar(SIDEBARNAME)Forum: Themes and Templates
In reply to: [Dinky] Header DistortionFirst all set Dinky on your site theme then I’ll check it.
Forum: Themes and Templates
In reply to: [Dinky] body a link hover colorI understand that you want changing post content links. Try this;
.post .entry-content a { color: #COLOR_HEX_CODE !important; } .post .entry-content a:hover { color: #COLOR_HEX_CODE !important; }
Forum: Themes and Templates
In reply to: [Dinky] body a link hover colorTrue style for body links;
body a:hover { color: #d65a8d; }
Each parts have different link style and not change by set on body. Which part you want to change link style?
Forum: Themes and Templates
In reply to: [Dinky] Change current page Menu button colorTest this
#main-navigation .sub-menu li.current-menu-item > a, #main-navigation .sub-menu li.current_page_item > a, #main-navigation .sub-menu li a:hover { color: #ff8ba6 !important; }
Forum: Themes and Templates
In reply to: [Dinky] Remove Author DateReplace by it
function dinky_entry_shortmeta() { global $post; $date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>', esc_url( get_permalink() ), esc_attr( function_exists('jdate') ? jdate(get_option('date_format'), strtotime($post->post_date)) : get_the_time() ), esc_attr( get_the_date('c') ), esc_html( function_exists('jdate') ? jdate(get_option('date_format'), strtotime($post->post_date)) : get_the_date() ) ); $author = sprintf( '<span class="author vcard"><a href="%1$s" title="%2$s" rel="author">%3$s</a></span>', esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'dinky' ), get_the_author() ) ), get_the_author() ); $utility_text = __( 'Posted on %3$s<span class="by-author"> by %4$s</span>.', 'dinky' ); /*printf( $utility_text, '', '', $date, $author );*/ }
Forum: Themes and Templates
In reply to: [Dinky] Change current page Menu button colorIt’s not back. It’s only bold.
Add this below style by any way.
#main-navigation .sub-menu li.current-menu-item > a, #main-navigation .sub-menu li.current_page_item > a, #main-navigation .sub-menu li a:hover { font-weight: normal !important; }
Forum: Themes and Templates
In reply to: [Dinky] Social buttons link to a new tabadd target=”_blank” to links.
In social.php file find this below code and others:
<?php if (dinky_get_theme_option('social_mail') != ''): ?><li><a class="social_round-email" href="<?php echo 'mailto:' . dinky_get_theme_option('social_mail') ?>" title="<?php _e('E-mail','dinky'); ?>"></a></li><?php endif; ?>
Then replace those by this:
<?php if (dinky_get_theme_option('social_mail') != ''): ?><li><a target="_blank" class="social_round-email" href="<?php echo 'mailto:' . dinky_get_theme_option('social_mail') ?>" title="<?php _e('E-mail','dinky'); ?>"></a></li><?php endif; ?>
Forum: Themes and Templates
In reply to: [Dinky] Header Text Won't DisappearUpdate the theme
Forum: Themes and Templates
In reply to: [Dinky] upload a picture in header or backgroundAdd this below style by any way.
#title { padding: 120px 0 0 !important; } @media screen and (max-height:570px) { #title { padding: 40px 0 0; } }
Change 120px and 40px
Forum: Themes and Templates
In reply to: [Dinky] upload a picture in header or backgroundWhat position do you mean? top,bottom or left,right?
Your welcome.
Add this below custom style by any way.#title .title { color: CODD !important; } #title .subtitle { color: CODE !important; }
Orginal location: css/style.css
Follow Admin Panel > Appearance > Header > Header Text > Text Color
Forum: Themes and Templates
In reply to: [Dinky] The header image is deformedYou must put suitable image on header which display good by resizing. Image size not very important! only you need an image that has scale of width and height by any size. Images that use for wallpaper are suitable for it.