Alex Cragg
Forum Replies Created
-
Forum: Plugins
In reply to: How to make categories appear as a dropdown listhave a look here
http://codex.wordpress.org/index.php?title=Template_Tags/wp_dropdown_categories
😀Forum: Themes and Templates
In reply to: No images load in IE7this has resolved itself
Forum: Fixing WordPress
In reply to: highlighting admin commentsfr3nzy17, is there a way to mod your script so that i can still use alternate highlighting? ive tried and failed, not just with your code but others. i can get one or the other to work, but not both combined.
Forum: Themes and Templates
In reply to: Lightbox CSS Validationif anyone comes across this, there has now been a new release, v2.03, and it has been css validated
Forum: Fixing WordPress
In reply to: Changing header in Kubrickwho is a bit of a joker…and gets strangely upset about people who don’t upgrade… you need to edit your css file, as this is where the header image is called.
Forum: Themes and Templates
In reply to: Widget Ready — How much work?no problems
aquacky AT gmail DOT com, http://www.paypal.com ….. 😉
im only messin’!
just glad i could help, its better than revising Goethe.
Forum: Fixing WordPress
In reply to: background imagesok, found it
for some reason it isnt in the main css, but there is another one added on, but i can’t find where it exists…it just seems to do so!!! someone else might be able to help you more, as i dont use this theme, but i think if you do this for now it should work:add this to the #page part of your css
background:
url("http://mydomain.com/wp-content/themes/default/images/kubrickbg.jpg") repeat-y top !important; }obviously changing to the new file name.
the !important bit makes that statement override any others with the same tag.
so it should replace the other bit which is separate.as i say, there might be a better fix
Forum: Themes and Templates
In reply to: Widget Ready — How much work?create another php file based on the original sidebar as a start, and altar to show other content. create another <div> class or id, then for that new class/id, change the css so it goes where you want it.
A classic would be to float the first left, the second to float right.
to get that sidebar to display, (cause it isnt a default template) use something like:
<?php include (TEMPLATEPATH . '/newsidebar.php'); ?>in your index.php file.
i think this would create two dynamic sidebars…one in each php file
<?php if (function_exists('dynamic_sidebar')) {dynamic_sidebar(1); } ?><?php if (function_exists('dynamic_sidebar')) {dynamic_sidebar(2); } ?>then in your functions.php, put
`<?php if (function_exists(‘register_sidebars’)) register_sidebars(2)); ?>i think…….!
can anyone else confirm this is right?!!
😀Forum: Requests and Feedback
In reply to: What happens now with posts?7. learn to spell
Forum: Fixing WordPress
In reply to: Adsense Questionsim not sure, cause the content is generated by a php call, and you can’t put any code within that bit…..hhmmmm
im guessing, but if you put it above the content, but below the header, then use the css similar to on the other thread i posted that might work…
or wait for someone who knows more than me!!Forum: Fixing WordPress
In reply to: background imagessure you don’t mean kubrickbgcolor.jpg
that is here…body { font-size: 62.5%; /* Resets 1em to 10px */ font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; background: #d5d6d7 url('images/kubrickbgcolor.jpg'); color: #333; text-align: center; }that is just the greyy background, the header picture is kubrickheader.jpg
i cant find it anywhere as just kubrickbg.jpg…
what is the image of?Forum: Fixing WordPress
In reply to: Can I make a post always stay at the top of the page?look into something called sticky posts, there are loads of plug-ins for it
try here too http://codex.wordpress.org/Plugins/Posts_Miscellaneous
😀Forum: Plugins
In reply to: get_the_categorythis one works
<?php wp_list_categories('title_li=<h3>Categories</h3>'); ?>
categories would be the title of the list
hope it helps
😀Forum: Requests and Feedback
In reply to: What happens now with posts?do you mean as in viruses….;-)
you mean oral i think!!!anyhoo, submit your site to google, yahoo etc, post on someone elses blog with your website listed. submit the site on ‘my wordpress’ in the support bit here and get people interested.
look at linkreferal.com
google adwordshope this helps you out, 😀
look at using different templates. so call a different cat lists depending on what page you are on etc
a link to your page would be helpful
😀