Business Advice and Help Forum for Businesses or Starting a Company in the UK - A1 Business Forums
corner image corner image
Member Box




corner image corner image
Our Advertisers

corner image corner image
Register FAQ Members List Today's Posts Search Today's Posts Mark Forums Read
A1 Business Blog Home
corner image corner image
A1businessforums.co.uk - The UK's Friendliest Online Business Community
Go Back   Business Forum UK - Advice Help and Questions - A1 Forums > Business Forums > Graphic Design, Web Design and Coding
Reload this Page

Wordpress theme help

Designers Forum for Graphic, Logo or Print Design and Photography plus Website Design, Coding, Themes and Skins

Reply
corner image corner image
 
LinkBack Thread Tools Display Modes

corner image corner image
  #1 (permalink)  
Old 19-06-2008, 20:17
Peter W's Avatar
Peter W Peter W is offline
Blog Entry: Capital gains tax on selling a property within ...
A1 is my Second Home!
 
Join Date: Mar 2008
Location: Brighton and Hove
Posts: 303
Thanks: 35
Thanked 91 Times in 80 Posts
Default Wordpress theme help

This is an extract from my index.php file:


<p class="post-meta">Posted on <?php the_time('j F Y') ?> under <?php the_category(', ')?>. <?php edit_post_link('Edit', '', '. '); ?> </p></div>

<img src="http://brighton-accountants.com/blog/wp-content/themes/TAD/images/line-hdot-blog-long.gif">

<?php endwhile; ?>


The problem is that this leaves a large white space between the 'Posted on...' line of text, and the graphic (it looks like 2 line breaks). Does anyone know how to reduce this down to one line break?

Thank you,
__________________
Brighton and Hove Accountants > Tax returns - Payroll - New businesses - Limited companies
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookStumble this Post!Google Bookmark this Post!
Reply With Quote
corner image corner image
Sponsored Links

Register to remove these ads
Peter W
View Public Profile
Send a private message to Peter W
Visit Peter W's homepage!
Find all posts by Peter W
corner image corner image
  #2 (permalink)  
Old 19-06-2008, 21:06
admagic's Avatar
admagic admagic is offline
I Live on A1!
 
Join Date: Mar 2008
Posts: 803
Thanks: 119
Thanked 454 Times in 261 Posts
Peter
Edit the style.css using the presentation editor
Your problem is in the class post-meta

parameter margin-top
currently set as 1.6em

reduce to zero, or even negative to achieve the space you want

ie replace this

.post-meta {
margin-top:1.6em;
color:#999;
}

with this

.post-meta {
margin-top:0em;
color:#999;
}

or even this

.post-meta {
margin-top:-1.0em;
color:#999;
}

to get the gap you want
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookStumble this Post!Google Bookmark this Post!
Reply With Quote
corner image corner image
The Following User Says Thank You to admagic For This Useful Post:
Peter W (19-06-2008)
admagic
View Public Profile
Send a private message to admagic
Find all posts by admagic
corner image corner image
  #3 (permalink)  
Old 19-06-2008, 21:11
Peter W's Avatar
Peter W Peter W is offline
Blog Entry: Capital gains tax on selling a property within ...
A1 is my Second Home!
 
Join Date: Mar 2008
Location: Brighton and Hove
Posts: 303
Thanks: 35
Thanked 91 Times in 80 Posts
Thanks, but it didn't do anything :sad1:.
__________________
Brighton and Hove Accountants > Tax returns - Payroll - New businesses - Limited companies
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookStumble this Post!Google Bookmark this Post!
Reply With Quote
Peter W
View Public Profile
Send a private message to Peter W
Visit Peter W's homepage!
Find all posts by Peter W
corner image corner image
  #4 (permalink)  
Old 19-06-2008, 21:14
admagic's Avatar
admagic admagic is offline
I Live on A1!
 
Join Date: Mar 2008
Posts: 803
Thanks: 119
Thanked 454 Times in 261 Posts
Ill take another look....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookStumble this Post!Google Bookmark this Post!
Reply With Quote
admagic
View Public Profile
Send a private message to admagic
Find all posts by admagic
corner image corner image
  #5 (permalink)  
Old 19-06-2008, 21:15
admagic's Avatar
admagic admagic is offline
I Live on A1!
 
Join Date: Mar 2008
Posts: 803
Thanks: 119
Thanked 454 Times in 261 Posts
By the way...you have to refresh the page to get a new stylesheet to load
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookStumble this Post!Google Bookmark this Post!
Reply With Quote
admagic
View Public Profile
Send a private message to admagic
Find all posts by admagic
corner image corner image
  #6 (permalink)  
Old 19-06-2008, 21:43
admagic's Avatar
admagic admagic is offline
I Live on A1!
 
Join Date: Mar 2008
Posts: 803
Thanks: 119
Thanked 454 Times in 261 Posts
Im no css expert....but I think a kludge will work
by putting in a margin-bottom on class post-entry as -1.0 em

ie
eg replace

.post-entry, .archives {
font:1.3em/0em 'Century Gothic', 'Lucida Grande', Verdana, Arial, Sans-Serif;
}

with

.post-entry, .archives {
font:1.3em/0em 'Century Gothic', 'Lucida Grande', Verdana, Arial, Sans-Serif;
margin-bottom: -1.0em;
}

Adjust the bottom margin to suit...
If that doesnt work...I give up
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookStumble this Post!Google Bookmark this Post!
Reply With Quote
admagic
View Public Profile
Send a private message to admagic
Find all posts by admagic
corner image corner image
  #7 (permalink)  
Old 19-06-2008, 21:50
Peter W's Avatar
Peter W Peter W is offline
Blog Entry: Capital gains tax on selling a property within ...
A1 is my Second Home!
 
Join Date: Mar 2008
Location: Brighton and Hove
Posts: 303
Thanks: 35
Thanked 91 Times in 80 Posts
That didn't work, but I got there by adding the line:

margin-bottom:-2em;

to the .post-meta section.

I only knew where to look after following your earlier post - thank you.
__________________
Brighton and Hove Accountants > Tax returns - Payroll - New businesses - Limited companies
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookStumble this Post!Google Bookmark this Post!
Reply With Quote
Peter W
View Public Profile
Send a private message to Peter W
Visit Peter W's homepage!
Find all posts by Peter W
corner image corner image
  #8 (permalink)  
Old 19-06-2008, 21:57
admagic's Avatar
admagic admagic is offline
I Live on A1!
 
Join Date: Mar 2008
Posts: 803
Thanks: 119
Thanked 454 Times in 261 Posts
Ha!

If all else fails read the question - I have only just seen that it is the gap BELOW posted on you were trying to mess with!!

Speed read your post and thought it was the gap above it...so yes.....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookStumble this Post!Google Bookmark this Post!
Reply With Quote
admagic
View Public Profile
Send a private message to admagic
Find all posts by admagic
Reply

« Gallery software | I dont suppose any of you have any reptile vector images? »

corner image corner image
Thread Tools
Show Printable Version Show Printable Version
Email this Page Email this Page
Display Modes
Linear Mode Linear Mode
Hybrid Mode Switch to Hybrid Mode
Threaded Mode Switch to Threaded Mode

corner image corner image
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On

corner image corner image
Similar Threads
Thread Thread Starter Forum Replies Last Post
Services trade for some wordpress theme work Scottscd Get Quotes or Find Suppliers 3 30-05-2008 13:13
A1 Needs a Theme Tune RayB Time Out 40 04-05-2008 17:01
Wordpress theme coding help sally Graphic Design, Web Design and Coding 0 16-04-2008 12:37
Which wordpress blog theme? Fill-Your-Pants General Business Forum 13 06-03-2008 13:37


All times are GMT. The time now is 23:37.


Calendar - Contact Us - A1 Business Forum UK - Archive - Top

© A1 Business Forums 2008

A1 Business Forums is a brand of Pixel Mind Ltd, a company registered in England and Wales with company number 06693709

Pixelcraze
Forum theme a Pixelcraze Creation





LinkBack
LinkBack URL LinkBack URL
About LinkBacks About LinkBacks
Bookmark & Share
Digg this Thread! Digg this Thread!
Add Thread to del.icio.us Add Thread to del.icio.us
Bookmark in Technorati Bookmark in Technorati
Furl this Thread! Furl this Thread!
Share on Facebook Share on Facebook
Stumble this Thread Stumble this Thread
Google Bookmark this Thread Google Bookmark this Thread