bryceadams
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do I remove unwanted links on my blog?Could you be more specific – what links? where?
Forum: Themes and Templates
In reply to: How to centre align logoHey Marie,
I had a look at your code and you could actually just add the following css to your style.css file and it will center both.
.topcontainer {text-align:center;} /* centers logo and top menu bar */
Regarding it ‘floating’ depending on monitor size, this would normally require your theme to be responsive – read up here on it
Forum: Themes and Templates
In reply to: get_bloginfo for just url path?thank you for your response! but sorry, i was a little confused. If I was on example.com/post and wanted to have a link to othersite.example.com/post.. what would i need to put where ‘post’ is? thank you!
Forum: Fixing WordPress
In reply to: How to Hide Sidebar then Extend Page to take full widthdra6on, even though you’ve resolved this, i 100% agree with pankaj.
making a template page is very very easy. the simplest way to explain it to you would be to duplicate/copy your current page.php file and rename it as *anything*.php. then add:
<?php /* Template Name: No-Sidebar Page Template */ ?>
at the top and then just remove <?php get_sidebar () ?> from the bottom of that file or wherever it is.
now on that individual page in wordpress, just select that template from the list on the right sidebar.
however, you may have an issue now with the content width being set to a smaller amount than the container as it still thinks there’s a sidebar there. then I would just find ‘content’ or whatever the id/class for your main content area is called, copy the ids/classes associated with it (probably just a few), and then change the width to your full page width (whatever it may be).
sorry if that sounded complicated.. i know with the last few lines of adding id/classes there are easier/nicer ways to do it but that’s just what i personally do.
this is a very easy quick fix and allows you to use it again on another page.
Forum: Themes and Templates
In reply to: Fixing Kubrick Theme Headeri love you! ??
Forum: Themes and Templates
In reply to: Adsense on free wordpressI always thought you couldn’t put Adsense on a free wordpress no matter what.
Forum: Themes and Templates
In reply to: Display Posts In Only One CategoryOn the INDEX page. Also, if possible can this be done with displaying all the posts of one TAG using 2.3?