skulled
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Wp2Click on the big blue box that says “latest .zip”.
That is the current stable version. ??
Forum: Themes and Templates
In reply to: CSS and Parent elementsOnce again .. its very hard to visualize what is happening and what is wrong without actually seeing it .. ??
Forum: Fixing WordPress
In reply to: Formatting photosYou can set the margins for the images inside post, by setting margins in the stylesheet for
img
tags inside of the post container.I am not sure yet about the sizing of the images themselves, they were discussed in another thread, try a search on the forums, something should turn up.
Forum: Requests and Feedback
In reply to: Font size changeSet a
font-size
property in yourbody
definition part of the stylesheet. This will take effect, whenever there is no specific font styling set for any item on the page.Forum: Themes and Templates
In reply to: CSS and Parent elementsNo problem ??
Forum: Themes and Templates
In reply to: help with centering theme in firefoxTry making the following changes:
body {
background: #36393d;
padding:0px 20px;
font:x-small Georgia,Serif;
color:#666;
font-size/* */:/**/small;
font-size: /**/small;
}
becomes:
body {
margin: 0px;
padding: 0px;
background: #36393d;
font:x-small Georgia,Serif;
color:#666;
font-size/* */:/**/small;
font-size: /**/small;
}
Add this:
body * {
margin: 0;
padding: 0;
}
And then the way you have your
#rap
leave that alone. I suspect that should work. Otherwise I am going to have to look at the source code itself, and not the rendered source from the browser.Forum: Themes and Templates
In reply to: changing header graphic in mx4 themePlease go through this:
https://www.ads-software.com/support/topic/53551?replies=17
And search before to see if a similar issue was tackled ??
Forum: Themes and Templates
In reply to: help with centering theme in firefoxand by the way, I am trying a fix for your menu, will let you know once I have it .. ??
Forum: Themes and Templates
In reply to: help with centering theme in firefoxChange this in your stylesheet:
#container {
text-align: "center";
}
Becomes:
#container {
margin: 0 auto;
text-align: "center";
}
that should work ..
Forum: Fixing WordPress
In reply to: can’t login to wp-adminOut of curiosity, what is Podz way .. ?
Considering that tease has no idea what phpMyAdmin is, Podz way might be a lot easier ..
so ozzie123 .. ??
Forum: Fixing WordPress
In reply to: can’t login to wp-adminHow comfortable are you using phpMyAdmin?
Forum: Fixing WordPress
In reply to: can’t login to wp-adminWhat does the error page say?
Forum: Themes and Templates
In reply to: CSS and Parent elementsWhat do you mean, they didn’t work?
Can you please give more information on what exactly is happening and how it is rendering.
Forum: Fixing WordPress
In reply to: Lots of (probably simple) questionsTake a look here:
https://codex.www.ads-software.com/Template_Tags/wp_list_cats
Basically what you do is, in your theme, add an additional arguments to the
wp_list_cats()
functionchildren=0
Forum: Fixing WordPress
In reply to: can’t login to wp-adminCan you at least access the admin login page?