Noemi Nozze
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress database error: Can’t create/write to fileWhat your provider need to do is set some rights correct or re-start mysql. Looks like if this just happend over time the harddisk could be full…..
Forum: Themes and Templates
In reply to: 3 column theme – Where can I find a nice onehehehe I just basicly SUCK at layouts and designing thats why I look for themes-in-a-box ready to go ??
But I reckon you guys are right ?? Need to get my own nice dark-thingy theme ??
Forum: Themes and Templates
In reply to: A line in the sidebar..How is your side bar defined ??
You could try adding a border-left: 1px solid blue (or what ever colour)
on the side bar
OR
on the DIV of the right-content border-right: 1px solid blueForum: Requests and Feedback
In reply to: Allow certain pages to be hidden from links.what sidebar ??
Admin side bar ? Or in your blog ?
Forum: Fixing WordPress
In reply to: How to remove paragraph within “the_content”go for 1.5 and ask em again ??
Forum: Fixing WordPress
In reply to: Show at mostrebuild the stuff ??
BUT ask yourselve why ?
Forum: Fixing WordPress
In reply to: Displaying sub pages excerpts or first 50 words in a pageyeah read the post like 5 times but still I cant make a fiddle out of this…
You have sub-pages of a “parent” page teacher
So
Teacher ->
Calhoun
Johnson ….
etc.And you want to view the first 50 words of those sub-pages ??
Forum: Plugins
In reply to: RHODP PluginCould you like edit it so that it is NOT 3 lines but normal coded formatting like
<?PHP
if () {
blablabla
}
etc etcI got like 3 lines in total in the script and I really like to see source before I use anything..
It sounds nice though:) (except the remote-script part)
Forum: Plugins
In reply to: show category posts in admin panelYes it can be done, not sure where I tried spotting the location where they pull out the info on the DB put can not get my finger on it yet (been searching some time now ?? ?? Maybe someone else can help out ? I would like to know also ??
Forum: Plugins
In reply to: Members Only Section?What you need to do first is get the enviremont variables from the user
so declare:
get_currentuserinfo() ;
some where this will create the following variables:
(You might need to GLOBAL them first !! not sure)
$user_level
$user_ID
$user_nickname
$user_email
$user_url
$user_pass_md5You can use these, this ONLY work for registered users ??
Forum: Fixing WordPress
In reply to: Two blogs and different feeds?Looks like a seperate plugin for something that is placed in a 3rd column
Reckon you could look for a plugin like that ?
Forum: Themes and Templates
In reply to: 3 column theme – Where can I find a nice onehehehe Thats the problem they are nice ?? But not what I am looking for..
Reckon I have to design something myselve *wich I totally suck at :P*
Forum: Themes and Templates
In reply to: adding new pages with extra UL LI.something fu..ed up this post *grin*
But yeah you can do that, you might need to add some extra style-sheet tags since a lot of them cover #tag ul ul li and not #tag ul ul u li (thought the layout would be f**ked
Forum: Themes and Templates
In reply to: Where to put the end-div-tag?Make your FOOTER DIV absolute and keep it off 10px of the bottom ? (or none) And still have it in the page tag. This way the page-div will go all the way down and the FOOTER DIV shall be placed on top of it..
The stylesheet would look like:
#footer_tag {
position: absolute;
bottom: 0px;
width: 100%;
text-align: center;
}What you might want to do is put a TABLE in the DIV so that the text isn’t all that centered…
Forum: Themes and Templates
In reply to: Comments out of place (PHP Problem)Hmmm I don’t really see the problem in FireFox or Internet Explorer.. What I do see is that the comments-text is prety tight fit to the box. You might want to add some margin-space in there ??
If you don’tknow how the margin tag works:
Margin: top right bottom left;
So if you do:
margin: 0 0 0 5px;
It will leave the first 5px of the left side free.
margin: 5px;
Will leave on ALL edges 5px free….Hope that is of some sort of help ??