WP Blog: How to Block Out Post Titles ?

Status
Not open for further replies.

legacy

*Young Money Movement*
Nov 1, 2008
154
4
0
New York Fucking City
I have a photoblog, that has titles above the images, it looks like there is too much spacing between pics, look in sig for better understanding.

What code can i use to block out the title, while still searchable thru google?

np0uvpnf4.jpg
 


I'm not sure if this is much help. But if you text-indent the title to something like -10000px, it should take it out of site, but still be there for SEO purposes.
 
Well you can just take out the titles on the main page which I think is the index.php file. Cause then the titles wont be on the index page but they will be on all the other pages (i.e. the individual posts, your blog archives, your blog searches . . .). Google can still probably find the individual posts on your blog to make them searchable on Google search.

Or you can take the title and put it beside the date and make it the same font size as your date. So your "Sexy Girls" post could look like "Sexy Girls | Saturday, December 6, 2008 2:32"

Just some ideas.
 
You could try something like this... search these codes from your css:

Code:
.entry h2 {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    line-height: 1.3em;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: -1px;
}

.entry h2 a {
    line-height: 1.3em;
    font-size: 20px;
    letter-spacing: -1px;
}
And change those lines to this:

Code:
.entry h2,
.entry h2 a {
    padding: 0;
    margin: 0;
    line-height: 0;
    font-size: 0%;
    text-indent: -9999px;
    color: #fff;
    visibility: hidden;
}
Now headlines are found in html but hidden in frontend.
 
Maybe make the colour of the post title text the same as it's background and use a tiny font?
 
Legacy needs to learn some htmls and xmls...

Yeah, title will still show up in the feed.
 
You could try something like this... search these codes from your css:

Code:
.entry h2 {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    line-height: 1.3em;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: -1px;
}
 
.entry h2 a {
    line-height: 1.3em;
    font-size: 20px;
    letter-spacing: -1px;
}
And change those lines to this:

Code:
.entry h2,
.entry h2 a {
    padding: 0;
    margin: 0;
    line-height: 0;
    font-size: 0%;
    text-indent: -9999px;
    color: #fff;
    visibility: hidden;
}
Now headlines are found in html but hidden in frontend.

Where can i find this?.. in the index.php? or single.php because i couldnt find it.
 
Where can i find this?.. in the index.php? or single.php because i couldnt find it.

/wp-content/themes/light/style.css

Maybe consider taking a look at Webuilder 2008 or UEStudio '06 instead of Frontpage. Also check out the Web Developer addon for Firefox for quick browser access to some useful tools.
 
Dude, time to learn some xhtml and css, this is pretty basic stuff. Monkeyman and Jizzlobber nailed it, simply adjust your css.

I don't think it's the titles that are causing you the problem of too much space between each pict though. It might just be the banners you've stuck between every single image. I'd try reducing their frequency to one every three images. As it is now, it reeks of desperation and makes the site unatractive.

If I was doing this I would leave the headers as is, move the caption to below the title and move category/comments stuff below each pic, reduce the frequecy of banners to one for every three or more pics, and play with your margins between all the elements until you are happy with it. Keep in mind that there is nothing wrong with some whitespace.

Oh, and remove the pimply ass on page 2. No one needs to see that shit.

Good luck.
 
Dude, time to learn some xhtml and css, this is pretty basic stuff. Monkeyman and Jizzlobber nailed it, simply adjust your css.

I don't think it's the titles that are causing you the problem of too much space between each pict though. It might just be the banners you've stuck between every single image. I'd try reducing their frequency to one every three images. As it is now, it reeks of desperation and makes the site unatractive.

If I was doing this I would leave the headers as is, move the caption to below the title and move category/comments stuff below each pic, reduce the frequecy of banners to one for every three or more pics, and play with your margins between all the elements until you are happy with it. Keep in mind that there is nothing wrong with some whitespace.

Oh, and remove the pimply ass on page 2. No one needs to see that shit.

Good luck.

pm me the pimply ass, i didnt see that on the second page..
 
Dude, time to learn some xhtml and css, this is pretty basic stuff. Monkeyman and Jizzlobber nailed it, simply adjust your css.

I don't think it's the titles that are causing you the problem of too much space between each pict though. It might just be the banners you've stuck between every single image. I'd try reducing their frequency to one every three images. As it is now, it reeks of desperation and makes the site unatractive.

If I was doing this I would leave the headers as is, move the caption to below the title and move category/comments stuff below each pic, reduce the frequecy of banners to one for every three or more pics, and play with your margins between all the elements until you are happy with it. Keep in mind that there is nothing wrong with some whitespace.

Good luck.


How do i make the ads apear over every 3 posts?

Thanks
 
Status
Not open for further replies.