Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 04-23-2012, 06:23 PM   #1
Dcat
Confirmed User
 
Dcat's Avatar
 
Industry Role:
Join Date: Aug 2003
Location: Mexico
Posts: 1,607
Any Wordpress Ninjas Around?

I just started with Wordpress a few days ago, I have read up on it some, but something is still alluding me..

I have an old Kubrick theme that I want to use on my copy of Wordpress (version 3.3.1).

The problem is, when I post to Wordpress while using the Kubrick theme (using the built in text editor Ultimate TinyMCE, or with Windows Live Writer), the text, line spacing and everything gets all messed up. When I revert back to using the Twenty Eleven theme, everything in regards to the text looks great. The line spacing is fine, the text formatting is preserved, colors, style, fonts are just as specified.

My question is this:

WHAT part of the theme, style sheet, or the underlying theme framework is responsible for the text formatting? What do I need to focus on updating within my old Kubrick theme to make it play nicely again with text?

Dcat is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 06:28 PM   #2
sleazydoesit
Confirmed User
 
sleazydoesit's Avatar
 
Industry Role:
Join Date: May 2011
Location: Seoul, Korea
Posts: 343
style.css, but honestly it would be way easier to just grab a new theme! But if you insist, a little googling always helps...

edit: ok so you asked "what part of the... style sheet" is responsible for text formatting and I said style.css so that's all pretty obvious, but if you don't know how to find what parts of the css to edit then you really should just use a different theme.

https://www.google.co.kr/search?q=ku...ient=firefox-a

Last edited by sleazydoesit; 04-23-2012 at 06:34 PM..
sleazydoesit is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 06:37 PM   #3
papill0n
Unregistered Abuser
 
Industry Role:
Join Date: Oct 2007
Posts: 15,547
use chrome and 'inspect element'
papill0n is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 06:38 PM   #4
Mrwww
Confirmed User
 
Industry Role:
Join Date: Mar 2012
Posts: 374
The old theme will not have a reset.css plugged into it...

In your header.php file, place this line beneath your current stylesheet links and obviously above </html>.

Code:
<link rel="stylesheet" href="[YOURDOMAIN]/reset.css" />
then create a text file and dump this inside it...

Code:
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
Save it as reset.css and upload it to wherever you linked it to.

See if it works now, if not...then make sure you have written the stylesheet link properly.

Otherwise, ICQ me.
__________________


DattonMedia
Affordable design and media.
Daniel Datton
// ICQ: 9 0 5 9 2 8
support
@dattonmedia.com
Mrwww is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 06:38 PM   #5
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,320
i would go with twenyten or twenyeleven to start out with 3.x+
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 06:39 PM   #6
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,320
Quote:
Originally Posted by Mrwww View Post
The old theme will not have a reset.css plugged into it...

In your header.php file, place this line beneath your current stylesheet links and obviously above </html>.

Code:
<link rel="stylesheet" href="[YOURDOMAIN]/reset.css" />
then create a text file and dump this inside it...

Code:
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
Save it as reset.css and upload it to wherever you linked it to.

See if it works now, if not...then make sure you have written the stylesheet link properly.

Otherwise, ICQ me.
you want this instead

Code:
<link rel="stylesheet" href="<?php bloginfo('template_url');?>/reset.css" />
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 06:43 PM   #7
Dcat
Confirmed User
 
Dcat's Avatar
 
Industry Role:
Join Date: Aug 2003
Location: Mexico
Posts: 1,607
Quote:
Originally Posted by Mrwww View Post
The old theme will not have a reset.css plugged into it...

In your header.php file, place this line beneath your current stylesheet links and obviously above </html>.

Code:
<link rel="stylesheet" href="[YOURDOMAIN]/reset.css" />
then create a text file and dump this inside it...

Code:
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
Save it as reset.css and upload it to wherever you linked it to.

See if it works now, if not...then make sure you have written the stylesheet link properly.

Otherwise, ICQ me.

This sounds promising. I'll give it a try...
Dcat is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 07:08 PM   #8
brentbacardi
Confirmed User
 
brentbacardi's Avatar
 
Industry Role:
Join Date: Nov 2009
Posts: 1,425
While everyone is being helpful with wordpress issues.....

I am trying to place a banner add to the right of my wordpress setup but outside of the blog and sidebar.

So I am in the index.php of the template and its got idk maybe 10 lines of code. I want this:

Top Banner
Blog - Right Banner
Bottom Banner

All outside of the blog/wordpress

I have the top and bottom working fine however the right banner will not stay equal to the blog. I have used tables, divs, absolute positioning and I cant get it to work properly.

Any ideas?
__________________
Go Fuck Yourself!
brentbacardi is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 07:23 PM   #9
Mrwww
Confirmed User
 
Industry Role:
Join Date: Mar 2012
Posts: 374
Quote:
Originally Posted by brentbacardi View Post
While everyone is being helpful with wordpress issues.....

I am trying to place a banner add to the right of my wordpress setup but outside of the blog and sidebar.

So I am in the index.php of the template and its got idk maybe 10 lines of code. I want this:

Top Banner
Blog - Right Banner
Bottom Banner

All outside of the blog/wordpress

I have the top and bottom working fine however the right banner will not stay equal to the blog. I have used tables, divs, absolute positioning and I cant get it to work properly.

Any ideas?
Equal to the blog ?

Im guessing you havnt placed it within the container div.

Might be called wrapper rather than container.
__________________


DattonMedia
Affordable design and media.
Daniel Datton
// ICQ: 9 0 5 9 2 8
support
@dattonmedia.com
Mrwww is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 07:27 PM   #10
Brujah
Beer Money Baron
 
Brujah's Avatar
 
Industry Role:
Join Date: Jan 2001
Location: brujah / gmail
Posts: 22,157
for wordpress issues, when you can't find help on the wordpress.org forums, the stackexchange site is very helpful.
http://wordpress.stackexchange.com/
__________________
Brujah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 09:13 PM   #11
Dcat
Confirmed User
 
Dcat's Avatar
 
Industry Role:
Join Date: Aug 2003
Location: Mexico
Posts: 1,607
It looks like (from talking to Mrwww) what I have is a theme dropped onto old Kubrick code. It probably worked fine with older versions of WordPress, but not with 3.0+ because of all the deprecated functions it's now calling to. That might be the reason behind the complete thrashing it's giving my text formatting.

I'm not sure if it can be patched up (using updated calls), or if I'd have to extract the design, and attempt to rebuild it entirely on top of new updated code. Hmmm..
Dcat is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 09:40 PM   #12
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,320
Quote:
Originally Posted by Dcat View Post
It looks like (from talking to Mrwww) what I have is a theme dropped onto old Kubrick code. It probably worked fine with older versions of WordPress, but not with 3.0+ because of all the deprecated functions it's now calling to. That might be the reason behind the complete thrashing it's giving my text formatting.

I'm not sure if it can be patched up (using updated calls), or if I'd have to extract the design, and attempt to rebuild it entirely on top of new updated code. Hmmm..
wouldnt be too hard to update the code, if im bored tomorow i will do it
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 09:51 PM   #13
TheSenator
Too lazy to set a custom title
 
TheSenator's Avatar
 
Industry Role:
Join Date: Feb 2003
Location: NJ
Posts: 13,332
Quote:
Originally Posted by papill0n View Post
use chrome and 'inspect element'
Get a bottle of wine and sit down for some good reading.

https://developers.google.com/chrome-developer-tools/
__________________
ISeekGirls.com since 2005
TheSenator is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 09:52 PM   #14
Dcat
Confirmed User
 
Dcat's Avatar
 
Industry Role:
Join Date: Aug 2003
Location: Mexico
Posts: 1,607
Quote:
Originally Posted by fris View Post
wouldnt be too hard to update the code, if im bored tomorow i will do it
I'd be more than happy to compensate you for your time. ..Just let me know the best way to contact you, and I'll hit you up tomorrow.
Dcat is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 10:24 PM   #15
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,320
Quote:
Originally Posted by Dcat View Post
I'd be more than happy to compensate you for your time. ..Just let me know the best way to contact you, and I'll hit you up tomorrow.
i dont use any software to post to wp myself, the kubrick theme works fine in 3.3.2

could you take a screenshot to show what the issue is doing?
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2012, 10:59 PM   #16
jdavis
So Fucking Banned
 
Industry Role:
Join Date: Apr 2012
Posts: 51
best of luck in finding

peace and love!
jdavis is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.