Nicholas
Forum Replies Created
-
That makes sense. I did not think about that.
Forum: Plugins
In reply to: [Simple Twitter Tweets] Exclude_@replies does not workYep, doesn’t work for me. I think this plugin is abandoned. It’s a shame because it’s really good.
You can disregard this post as I have decided to buy a premium theme.
Thanks!
Forum: Themes and Templates
In reply to: [Penscratch] Add link hover to page navigationI ended up figuring it out. I added color to the wrong class which was overriding the hover effects. I removed that and I was able to able to acheive want I wanted easily.
Something so simple! ugh.
Forum: Themes and Templates
In reply to: [Penscratch] Add link hover to page navigationThanks for your response!
Unfortunately it did not work. I’ve tried that same exact code before and the links for the previous page and next page just remain black. But you can have a look.
Sorry, I forgot to mention the website.
As for the child themes, I am aware of this and I’ve used a child theme with the penscratch theme before but I always have issues with it and that’s probably because I modified nearly every PHP file, so even if the parent theme was to update most likely all the code changes I’ve made in the php files will override the updated changes anyways haha.
But It’s something I’ll look into again but for now I’ll just have to be be careful not to update it (it hasn’t been updated for like a year anyways) and I make regular backups.
Thanks again for your help, I really appreciate it.
Forum: Plugins
In reply to: [Sharify Social Share Buttons] Share counter not workingI’m having the same problem. I would like a fix too.
Forum: Themes and Templates
In reply to: [Penscratch] Menu disappeared from mobile viewI finally figured it out. I don’t remember what I did exactly..but it worked and that’s all that matters. But I think it was something to do with the media query min width. I also went ahead with your suggestion and created a child theme and that is working fine..mostly.
Thanks for your help though!
Forum: Themes and Templates
In reply to: [Penscratch] Menu disappeared from mobile viewThanks for your reply. I eventually plan on moving everything to a child theme as I’ve made modifications to the PHP code as well, or I just wont update the theme.
Anyways, I tried your suggestion…but I have already tried that once before and it does absolutely nothing.
Soon as I remove the -180px in the .site header, the menu appears back in normal form. But I lose the way the header looks.
I don’t know what to do..maybe it just can’t be done with this theme.
Thanks! That did the trick..now the menu toggle button is in the center instead of the side when in mobile view.
Any ideas how to extend the site title and nav outside of the content area without affect the mobile view?
I did this with negative margins to show you want I want to do https://nickerwin.com/wp-content/uploads/2015/11/headersample.png
It looks like I manage to get the navbar on the same line as the site title using this code:
.site-branding{ display: inline-block; float: left; } .main-navigation{ display: inline-block; float: right; }
But looks weird on mobile view. Atleast I’m making progress!
I’m wondering if its also possible to extend the site title and navigation a outside of the main content area and have it fixed so when you scroll down, it stays there. But I’m starting to think it would just be easier to get a different theme, haha.
Forum: Themes and Templates
In reply to: [Suits] Remove comment link on single postThe problem is that all the changes are made are not just CSS, I’ve changed a bit of the php code as well.
Forum: Themes and Templates
In reply to: [Suits] Remove comment link on single postI just have to remember not to update the theme if the author releases a update, haha. But I have backups if I did by accident.
Forum: Themes and Templates
In reply to: [Suits] Remove comment link on single postHello!
I think I might have fixed it.
I changed
<?php if ( comments_open() ) : ?>
to
<?php if ( comments_open() && ! is_singular() ) : ?>
which appears to have remove the the comment link on the single post view and kept the comment link on the homepage.
I don’t know if there is a better way of doing it…but I think this Suits theme is a child theme of Twenty Twelve. I’m not sure there..the code seems remarkably similar. So I found a modified code that was shared on here that fixed the same problem and implemented some of it in mine which seemed to have worked.
Forum: Themes and Templates
In reply to: [Theme: Less] Making read more link into a buttonI got it figured it out with the help of a friend.