mikokagome04
Forum Replies Created
-
Forum: Your WordPress
In reply to: Jenny-Fa – A personal blog, Orange Jellies styleYes, jpconcepts, the table was for listing my school schedule. It’s also the only table in the site so far.
Thank you for your feedback, everyone! ^_^
Forum: Your WordPress
In reply to: Admin theme for Kubrick done!Oh yeah, I forgot. If relative positioning doesn’t work (the method I used in the CSS code example in my previous post), try negative margins instead.
div#grabit, div.dbx-group {
margin-left: -80px;
}
I looked at the wp-admin.css, and I discovered that
div#grabit
anddiv.dbx-group
are actually the same div (which is why I selected both of them), anddiv#grabit
has a specified width of 188px, anddiv.dbx-group
is set to display as a block element with relative positioning.I hope this information will be helpful.
Forum: Your WordPress
In reply to: Admin theme for Kubrick done!Try
div#grabit, div.dbx-group {
position: relative;
left: -80px;
}
I don’t know if that’ll work, but those are the divs you should select. I just used a rough estimate when determining the value of 80px (with a “Ruler” tool inside my browser) – you should adjust it if it doesn’t suit your needs.
Hope that’ll help.
Forum: Your WordPress
In reply to: Jenny-Fa – A personal blog, Orange Jellies styleSorry, the server was experiencing technical difficulties a while ago, but it should be up and running now. Now’s your chance to visit if you haven’t already. ^_^
Forum: Your WordPress
In reply to: New Theme – Like it?The theme is very beautiful (the color scheme and the graphics were very well done), and the content is well organized and easy to read, except I agree with chaaban on the subject of your invalid XHTML.
I ran your page through the W3C validator again, with the following result:
Result: Failed validation, 54 errors
Your CSS at https://jax.cacrew.com/wp-content/themes/green-bottle/style.css appears to be valid, however.
And also, make sure that your CSS validation link in the footer points to stylesheet in your theme folder, since it currently (and erroneously) points to a style.css in the root directory.
Forum: Your WordPress
In reply to: Jenny-Fa – A personal blog, Orange Jellies styleAh, actually, theiconoclast31, if you looked carefully through the source code, I did not use tables for the layout at all. It was completely laid out with divs and CSS.
But thanks for the compliment.
Forum: Your WordPress
In reply to: What Do You Think?Ah, I loved China! I loved the people and the culture, and I can’t wait to go back! ^_^
I also liked your header logo – “Wo shi ying guo ren.” I am British.
Keep up the good work!
Forum: Fixing WordPress
In reply to: wp-admin/options-discussion.php troubleIf anyone else has this problem with Awardspace, please see
this particular post. It helped me solve the problem.Forum: Fixing WordPress
In reply to: wp-admin/options-discussion.php troubleWhoops…problem resolved! I just replaced all instances of the word “op_proxy_check” in the file with “opcheck”, which did the trick. Thanks for the search link, it really helped.
Forum: Fixing WordPress
In reply to: wp-admin/options-discussion.php troubleUmmm… sorry for my ignorance, HandySolo, but… what is mod_security?