Bearded Rick
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Graphene] Remove page and post titleWell I’m glad it worked!
About the Child Theme…it’s never too late! π
If you want to know more about Child Themes click here.
As you said you just need the style.css file and that’s it. If you want to modify your footer you can copy the original file from the main theme folder and just paste it in your child theme’s folder, it’s pretty easy.If you need any other help, please feel free to ask!
Thanks Saifur
-Rick
Forum: Themes and Templates
In reply to: [Graphene] Remove page and post titleOk try with adding !important to the declaration…
.slider_post h2 {
display: none !important;
}Forum: Themes and Templates
In reply to: [Graphene] Remove page and post titleNo worries π
You can try by adding this into your Custom CSS or Child Theme style.css so that way you wonβt lose all the changes made when the theme updates.
.slider_post h2 { display: none; }Let me know if it works!
Forum: Themes and Templates
In reply to: [Graphene] Remove page and post titleHi saifurv, can you provide a link of your website so I can have a look at the code?
Forum: Themes and Templates
In reply to: [Reviewgine Affiliate] change the icon-reorder imageYou’re welcome π
Forum: Themes and Templates
In reply to: [Hemingway] Copyright FooterCool I’m glad it helped!
About the preview…no worries we can fix it too.
Just copy and paste the “screenshot” image from your parent theme to your child theme folder.If you want you can even create a custom image for the preview, just make sure you it’s the same size as the original picture π
If everything’s ok remember to mark the topic as solved so others know.
Let me know if you need any helpCheers!
-RickForum: Themes and Templates
In reply to: [Hemingway] Copyright FooterSame here, Sam can you please copy/paste what’s in your Child Theme style.css?
Forum: Themes and Templates
In reply to: [Hemingway] Copyright FooterHello Sam!
to change the name on the footer you have to edit your theme’s footer.php.
The safest way to do that is creating a Child Theme, this will prevent any modification you make to your theme files so when the parent theme updates you won’t lose any changes you made.
Instructions on how to make a child theme can be found HERE.Once you’ve created your Child Theme, make a copy of footer.php and put it in your Child Theme’s folder and edit that.
At line 125 you’ll find:Β© <?php echo date("Y") ?> <a href="<?php echo home_url(); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>Just replace it with
Β© <?php echo date("Y") ?> <a href="<?php echo home_url(); ?>" title="YourCompanyName">YourCompanyName</a>Let me know if you need help in the process ok? π
Cheers!
-RickForum: Themes and Templates
In reply to: [Customizr] Change font size of custom menuHello Karan,
Can you provide your website URL? I’m sure it won’t take long to solve your issue π
Thanks!
Forum: Themes and Templates
In reply to: [AccessPress Lite] Child themeHi fexco,
Change the Template line with: accesspresslite or accesspress-lite
And the import url should be@import url("../accesspresslite/style.css");Let me know if it works!
Forum: Themes and Templates
In reply to: [Reviewgine Affiliate] change the icon-reorder imageAlright cool π
Have a nice weekend too!
-Rick
Forum: Themes and Templates
In reply to: [Hueman] How to change the color of the sidebar?No worries, glad to help π
for the footer add this:
#footer-bottom { background: #F3FAB6; }Content:
.content { background: #F3FAB6; }Changing the footer will only change the little container with your copyright so if you want to make it all the same color you have to change the background of the footer widgets:
#footer-widgets { background: #F3FAB6; }I put the same color of your sidebar.
Hope that helps!
Forum: Themes and Templates
In reply to: [Fifteen] Getting rid of sidebar on posts/portfolios in FifteenEdit: Double post
Forum: Themes and Templates
In reply to: [Fifteen] Getting rid of sidebar on posts/portfolios in FifteenNp, let me know if you need any help! π
Thanks!
-RickForum: Themes and Templates
In reply to: [Hueman] How to change the color of the sidebar?Alright just put this CSS into your Custom CSS or Child Theme style.css so that you wonβt lose all the changes made when the theme update
.sidebar { background: #ffffff; }Change the hex color code to whatever color you like π
Let me know if it works!