yeleek
Forum Replies Created
-
Forum: Plugins
In reply to: Forum using WP DBMeant to say – ideally with a wysiwyg interface π
Forum: Your WordPress
In reply to: PokerOnAMac.com redesign – what do ya think?I like it – lots of content but doesn’t feel cluttered. Good job.
Forum: Themes and Templates
In reply to: How do you change the headers on your themes?Thats the kubrick default theme. Think you’ll find the blue header is a graphic called Kubrickheader.jpg.
By all means remove it from php files or even just rename it but keep in mind that graphic also has the white rounded background and then part of the grey background behind it.You remove it and its going to show up big style (unless you replace it with something inline with the rounded corners/colours etc.
Forum: Themes and Templates
In reply to: Title LinkYou give me too much credit π Enjoy WP.
Forum: Fixing WordPress
In reply to: Image DisplayIts called lightbox
Forum: Themes and Templates
In reply to: How do you change the headers on your themes?If the theme already has an image and you aren’t a 100% sure where its configured from.
Go into the themes images folder, view it on thumbnails, find the header image, note the name down. Then perform a search on all the files for this specific theme looking for the name of the image i.e. if the image is called myheader.jpg use windows to search within the theme files for the text myheader.jpg.
Once its given you the result(s) look in the text files (backing up first) and then alter the name to point at your own jpg.Its actually really easy π
Forum: Themes and Templates
In reply to: Title LinkHey,
Hopefully someone else will have a ‘cleaner’ soloution but how about this?
Where the example in the codex has this
<h1 id="header"> <a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a> </h1>How about changing it to? (obviously backup header.php first)
<h1 id="header"> <a href="http://www.mymainsite.com">Text to be displayed</a> </h1>Here for more info
http://www.w3schools.com/html/html_links.aspForum: Themes and Templates
In reply to: Title LinkNot a 100% sure i know what you mean. Have you looked at this though and tried altering the Blog address (URL)
http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
Or are you actually wanting to stop wordpress from giving the title of the blog at the top of the screen and instead have link to your ‘main’ site? If so look in the header.php of your theme… http://codex.wordpress.org/Designing_Headers
Forum: Themes and Templates
In reply to: Moving the labels on commentsIs that it?! Flipping heck…
Many thanks Moshu!
Forum: Themes and Templates
In reply to: Moving the labels on commentsanyone? please?
cheers
Forum: Themes and Templates
In reply to: Display 5 Last and Previous postsForum: Themes and Templates
In reply to: IE Conditional StylesheetsHi,
Just looking – it seems that you are trying to fix the png issue. Just wondered if you set it to something else ie making text bold does it work then? i.e. is the issue the iecss not loading properly or is the issue in the png fix??
For the png fix look at this – i’m using it in my header and no worries.
PNG FixForum: Themes and Templates
In reply to: Moving the labels on commentsHi,
‘How can you get the labels once the those boxes are moved, to the left of the text boxes’ – Exactly.Moving the labels either to the left of the input boxes or even above them is what i’m looking to do. For some reason the author of the theme i’m using decided to put the labels beneath, and i can’t find a way to move them which works.
Thanks π
Forum: Themes and Templates
In reply to: Not got a clue what I’m doing!!!! HelpAdding an image to the post can be done through the admin screen under the upload section of write page/write post. Just browse to the file required and upload it…
The link Moshu gave does explain regarding the alignment of images but perhaps something like this would help more
http://www.w3schools.com/css/default.asp i’d say run through the examples in notepad on your local machine, gain experience then come back to wp.Forum: Themes and Templates
In reply to: IE Conditional StylesheetsDoes it work if you hard code it?
example
<!–Provides stylesheet to be used if browser is IE–>
<!–[if IE]>
<style type=”text/css” media=”screen”>
@import url( http://yeleek.co.uk/wp-content/themes/yeleek/iestyle.css );
</style>
<![endif]–>