James Edmonston
Forum Replies Created
-
Ah, okay. Thanks for your reply.
Might just have to play around with .htaccess and see if I can do it that way.
Cheers
Forum: Themes and Templates
In reply to: [Minimatica] Menu locationDepends entirely what theme you’re using.
Forum: Plugins
In reply to: Help – bet no one knows!Putting a global
font-size
onbody
should do the trick.body { font-size: 13px; }
Forum: Hacks
In reply to: Unable to Chronologically Order Posts on Category PagesThe default is chronological so unless you’ve set an order within the code, it’ll be chronological.
Have you made sure that comments are enabled both within the settings and the post itself?
Forum: Themes and Templates
In reply to: [P2] How to alter leading in P2?Would you be able to post a link to the site so I can take a look, please?
Forum: Fixing WordPress
In reply to: Possible to ADD PICTURES onto my theme?I’m not quite sure what you’re asking.
It’s extremely easy to add images within posts/pages directly from the WYSIWYG – just hit the insert media button at the top of the WYSIWYG and it’ll bring up a lightbox where you upload the images you want, then hit insert to post. Done.
Forum: Themes and Templates
In reply to: Split the background image to make the site load faster ?Only thing I’d suggest is using https://smush.it/ to compress the image even further (doesn’t make the quality any different at all – it just removes unneeded parts of the file).
Forum: Fixing WordPress
In reply to: How do you get rid of this borderThat’s no problem at all, glad I could help.
Forum: Fixing WordPress
In reply to: How do you get rid of this borderIf you’re asking how to get rid of the green border, add this to your CSS file:
.art-article th, .art-article td { border: none; }
If that doesn’t work, this certainly will:
.art-article th, .art-article td { border: none !important; }
Forum: Fixing WordPress
In reply to: get_footer() not workingUpdate: don’t worry – I’ve managed to fix it. It was due to copying the code over Skype and for some reason it messes around with the tabbing etc.
Yeah, sure. I will see what I can get done tomorrow during the day. Shouldn’t actually be too hard.
I’ve only ever made plugins for clients at work, so this could be my first public plugin!
Will get back to you on this when I’ve made some progress.
Forum: Fixing WordPress
In reply to: How to change parenting css, without usage of child themesSurely it’d be:
#homepage div.Font a:link{ color: #d55e00; font-family: 'LeagueGothicRegular' !important; font-size: 36px; font-weight: lighter; margin-bottom: 40px; padding-bottom: 6px; text-decoration: none; text-transform: uppercase; }
Forum: Fixing WordPress
In reply to: Get latest post link on wordpressIf you make pages children of the pages that are included in the nav, they should automatically be added as sub-menus.
Forum: Fixing WordPress
In reply to: Get latest post link on wordpress<nav> <ul id="main-nav" class="main-nav"> <?php wp_list_pages('title_li=&include=THE,IDs,OF,THE,PAGES,YOU,WANT,TO,INCLUDE,COMMA,DELIMITED'); query_posts('cat=23&posts_per_page=1'); if(have_posts()); while(have_posts()) : the_post(); ?> <li> <a href="<?php echo get_permalink(); ?>">LATEST POST</a> </li> <?php endwhile; wp_reset_query(); ?> </ul> </nav>
Try that. Obviously change where it says ‘THE,IDs,OF,THE,PAGES,YOU,WANT,TO,INCLUDE,COMMA,DELIMITED’ to the IDs of the pages you want to include.
The above should also support sub-menus.