invictusthemes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WP Macchiato] constructor for WP_Widget is deprecatedHi codedogs,
WP Macchiato Version 2.5 was already releasae
Forum: Themes and Templates
In reply to: [WP Macchiato] Size of Blog Title, Tagline and number of postsHello Enen,
for number 1 you can reduce the title font size and tagline by adjusting some css rules,
.site-title{ font-size: 36px; } h2.site-description{ font-size: 18px; }
and for number two, did you try on settings >> reading, then on Blog pages show at most you can set any numbers of you desire
thanks
- This reply was modified 8 years ago by invictusthemes.
Forum: Themes and Templates
In reply to: [WP Doppio] Uneven tiles<h3 class="entry-title"><a href="<?php the_permalink('') ?>"><?php custom_title('', '...', true, '20'); ?></h3>
correction for the code to replace- This reply was modified 8 years ago by invictusthemes.
Forum: Themes and Templates
In reply to: [WP Doppio] Uneven tilesHello myntkat,
we can add a function to limit numbers of text for the title this way you can add post with any length of title in it
you can add this to your function.php file
function custom_title($before = ”, $after = ”, $echo = true, $length = false) { $title = get_the_title();
if ( $length && is_numeric($length) ) {
$title = substr( $title, 0, $length );
}if ( strlen($title)> 0 ) {
$title = apply_filters(‘the_titlesmall’, $before . $title . $after, $before, $after);
if ( $echo )
echo $title;
else
return $title;
}
}and update the content.php about line 15 from
<?php the_title( sprintf( ‘<h3 class=”entry-title”>‘, esc_url( get_permalink() ) ), ‘</h3>’ ); ?>to
<h3 class=”entry-title”>“><?php custom_title(”, ‘…’, true, ’20’); ?></h3>
make sure if you do this you have an ftp so you can undo any changes you made if you broke something
thanks
Forum: Themes and Templates
In reply to: [WP Profile] WP Profile – Main Content Not ShowingHello hockeybank,
can you provide me the link to your site? so i can check the issue
thanks
Hello lucy211,
about your problem on slider the theme crop a image for the slide.. in your case I believe the small images was articles that was added before the theme was used.. in this case you can remove the featured image on those then try to re upload it.. so the theme will crop the correct image size..
and on sidebar recent post sorry i may miss looked that part please try to add this line of css on style.css
.flat-white-recent-post .post-desc-container {
position: inherit;
max-width: 260px;
margin: auto;
background: rgba(0, 0, 0, .5);
padding: 15px;
}
.post-thumb-container .post-desc-container {
position: absolute;
bottom: 0;
width: 100%;
left: 0;
}thanks
Forum: Themes and Templates
In reply to: [WP Profile] Removing Featured Link and Profile from Blog pageHello pnnylnskywlkr have you tried to set a static page for homepage the also select a postpage for post?.. I think that would be the answers on your question..
thanks
Hello beitsiach,
ummnn.. have you tried to use picture fill?.. check it out here https://scottjehl.github.io/picturefill/
Forum: Themes and Templates
In reply to: [Flat White] Slider Post Limitationhello sophiemu,
sorry but for default the theme shows every post that has featured image on homepage if no category set. maybe you can make a specific category then put you desired number of post to it
hope this help
thanks
Forum: Themes and Templates
In reply to: [Icon WP] Sliderresolved
Forum: Themes and Templates
In reply to: [Icon WP] Slidermarking this as resolved
will mark as resolved
Hello youarenew,
thank you for using the Flat White, about your question I’m little bit confused if what headline was it. please check this attach screenshot if this helps.https://screencast.com/t/ObdhFK7Okh
thanks
Forum: Themes and Templates
In reply to: [Flat White] sliding postsHello essess27
by default the slide should show automatically on frontpage,
then you can edit the specific category to go there,
by editing it on customizer slide option panel. thanks for using our theme
hope this help you.thanks,
janenet21,
Okay, lets try add some css rules
#top-widget{text-align: right;} or #top-widget{float: right;} either of two is correct but add which one suits your need.thanks,