tomizzoorg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Domainname and installation folder differsounds good
Forum: Installing WordPress
In reply to: Before I Install ThisI changed my WP to fit the theme of my site and it only took a couple of hours. I would read up on wordpress and what each template tag means, and also make a backup of your files.
Forum: Fixing WordPress
In reply to: Probably the dumbest question EVER.I’d check out https://codex.www.ads-software.com/Template_Tags
Forum: Installing WordPress
In reply to: step onewhy wouldnt you just run the install automatically?
Forum: Themes and Templates
In reply to: how to change ececec background?Forum: Themes and Templates
In reply to: how to change ececec background?I just entered a simple black code:
body {
margin: 0px;
padding: 0px;
background: #000000 url(images/bg.png) repeat-y center;
color: #666;
font: 11px/15px Verdana, Arial, Helvetica, sans-serif;
}This code may or may not cause problems, it’s not the format I was taught or use, however it seemed to work just fine in IE for me. what browser are you using?
p.s. make sure your codes have a “#”, and i’d start by using a familiar code (like black or red), to make sure that the codes work (or dont)..if that doesnt work, try this code (one that i’d use):
body{
margin:0px;
padding:0px;
background-image:url('images/bg.png');
background-position:center;
background-repeat:repeat-y;
background-color:#000000;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px; OR font-size:15px;
color:#666;}Forum: Themes and Templates
In reply to: Blog Alignment problemTo be honest, it looks fine both in IE and Firefox. If I were visiting your site, I would be paying attention to the content rather than the 4 pixels of space between columns.
If you are that obsessed, I’d save your custom theme, revert to the old one and copy and paste things very very slowly, bit by bit until finally you find the piece that causes the error.
Also, it could be a simple problem like closing tags or maybe setting a width for something. You might want to check your CSS also.
Forum: Themes and Templates
In reply to: how to change ececec background?the ececec is the gray on the sides of your blog, and the border/white in the middle of the page is an image. I was able to create a makeshift page with that background styling and was able to change the hex codes to black.
I’m not exactly sure what you want to change, the white or the gray…
Forum: Fixing WordPress
In reply to: Domainname and installation folder differIf there is a one time fee for setting up an addon domain, then I would suggest doing that. If there is a monthly charge, I would go and get new hosting. If youd like, I can give you a list of hosts that have cheap rates and excellent services, although I am not sure if I can post them here.
If you set up an addon domain then yes, the permalinks would display just fine. It would be a completely different website configured in a folder on the existing site. Any files or folders in that folder would be prefaced with https://yoursite.com.
Sorry if that sounds confusing.
Forum: Fixing WordPress
In reply to: Domainname and installation folder differif you own https://www.personal.com, i would set up an addon domain and host your https://www.nicelink.com there. If you do not own https://www.personal.com, ask the owner/webmaster if they can set an addon domain for you. This is how I set up a blog on a website in a folder.
Essentially, what I’m saying is, why cant you host your domain wherever your folder is?
Forum: Fixing WordPress
In reply to: Podpress in mini-loop using get-a-post pluginI understand that get-a-post doesnt display a “loop”, but my loop is only 1 post. on the front page of the site I am working on, one thing i have on there is the latest post. I could not get the real miniloop to work, so I used get-a-post and that seemed to work fine. However, as you can see from the code above i used some common template tags.
What I want to be able to do is figure out 1) what is wrong and 2) how i can be able to display the audio posts/flash player on the front page.