Luke Stacey
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Horizontal line under Autor nameMaybe, but to be sure try comparing files:
Forum: Themes and Templates
In reply to: Horizontal line under Autor nameYour welcome!
It’s best to have a child theme otherwise, you will lose your modifications when the theme updates. So be careful pushing the update button until you have everything sorted 🙂
Forum: Themes and Templates
In reply to: Horizontal line under Autor nameYou can remove the red categories using this snippet of CSS:
.newscategory { display: none; }You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.
To add a horizontal line between the author name and the post content you will first need to create a child theme.
Next,
1. Create a folder within your child theme folder called ‘inc’
2. Within that folder create another folder called ‘partials’
3. Go to your parent theme folder and download these two files from mediaphase-lite/inc/partials :
content-blog-default.php
content-single.php4. Open up the first file (content-blog-default.php) and go to about line 65 and you will see this:
<h1 class="singleposttitle"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>5. Directly below that line add this : <hr>
6. So, in the end it will look like this:
<h1 class="singleposttitle"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <hr> <p class="newsauthor"><?php _e( 'Posted By', 'mediaphase-lite' ); ?> <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" class="authorname"><?php the_author(); ?></a></p>7. Open the content-single.php file and go to about line 57 and repeat the process from #4.
8. Save both files and upload them to your child theme inside the inc/partials folder.
Here’s a picture of the final result: Screenshot
I hope that helps 🙂
Cheers,
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Horizontal line under Autor nameHi there!
Could you post a link to your website or let us know what theme you are using? Then we can do our best to help you out.
Cheers 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Responsive] How to change the front page pictureHi Selda,
Your welcome! I’m glad it helped you 🙂
Cheers!
Forum: Themes and Templates
In reply to: [Responsive] How to change the front page pictureHi Selda,
I made a quick video to help you out.
Take a look here.
I hope that helps 🙂
Cheers,
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Editing theme files and upgrading themesHi Esther,
The Simple Custom CSS plugin is working great for me, so yes, highly recommended 🙂
Alternatively, if you have Jetpack installed you can activate the Custom CSS Module from the Jetpack dashboard.
Good luck with your site!
Forum: Themes and Templates
In reply to: Editing theme files and upgrading themesHi there!
Yes, when you update the theme any changes you make to the style.css file would be lost.
There are two ways to overcome this:
1) If you want to make major changes to your theme (such as editing page templates) then you can create a child-theme. Whatever changes you make to the files in your child-theme folder will not be lost when your theme updates.
2) If you just want to make a few style changes using CSS then you can install a custom CSS plugin such as Simple Custom CSS.
If you need any more help with either of those options just let us know and we’ll do our best to guide you through it.
I hope that helps 🙂
Luke the Daft Duke
Hi there!
I was able to remove the white space between the menu bar and the slider with this CSS snippet:
#masthead { margin-bottom: 0; }So it would look like this: Screenshot
You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.
I hope that helps 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: WP Theme update helpHi there!
Please contact the developer of your theme. We can only help with free themes on here.
Cheers,
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Custom template for listing categories on a pageHi there!
Can you post a link to your website so we can take a lot and make a suggestion for you?
Cheers 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Divi Theme – Remove author, date, commentsHi there!
This css snippet should do it:
.post-meta { display: none; }You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.
But I would suggest you ask over at Elegant Themes as this theme is for support of free theme’s hosted on the ww.wp.xz.cn repository.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: remove captions from front pageNo problem. Your welcome! 🙂
Forum: Themes and Templates
In reply to: Need template for help system with left side barHi Frank,
There are several WordPress themes designed for specifically this purpose.
The only free one I’m aware of is called weDocs.
You can read about it here.
I hope that helps!
Cheers,
Luke the Daft Duke
Forum: Themes and Templates
In reply to: remove captions from front pageI don’t think you need to use function, it’s just a matter of being super specific with the CSS.
Because it’s an old theme, its just a little tricky.
How about this…
Remove the captions everywhere using the previous code…
.wp-caption-text { display: none; }but then display them on the individual post pages:
(i.e. so they would appear here)
.list-news .single .wp-caption-text { display: block; }I think that will do the trick but I can’t test this theme out – not even sure what it’s called 🙂 so give it a try and if not I’ll take another shot.
I hope that helps!
Luke the Daft Duke