Aria
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove the standard background?Hi Crayonlrsc,
This image is attached to the header in your CSS (line 36)
#header { background: url("http://www.camfabulous.com/wp-content/themes/custom-community/images/default-header.png") no-repeat scroll 0 0 transparent; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; color: #888888; height: auto !important; margin-bottom: 12px; min-height: 50px; padding-top: 25px; position: relative; z-index: 999; }When you have this kind of doubts, I suggest you use FireBug, pretty useful !
// don’t forget to mark this thread as resolved, select it in the right sidebar.Forum: Themes and Templates
In reply to: Footer Doesn't Stretch across homepageIt looks good like that!
Forum: Themes and Templates
In reply to: Footer Doesn't Stretch across homepageBad news deadrawstar… Since you use a ‘commercial theme’, and I suggest you ask for their support.
Like WP say in the codex :
We do NOT support premium themes as you paid for their support when you bought it and it is not our place to keep shady vendors in business. If someone wants to help, that is fine.
Besides, I’m sorry but I don’t know the organization of their templates.
Forum: Themes and Templates
In reply to: How to delete posted on, written by and category?Oops, sorry!
It worked for me, with Chrome and Firefox, maybe not with I.E. or Safari…If you’re familiar with basic php, and deleting some lines, there is a radical method I use sometimes – but I don’t know if it’s recommanded for all cases – but at least, it works :
- Creat a child theme
- Copy the 4 php files in the directory of your new child theme
/wp-content/themes/new_child_theme/
- loop.php
- loop-page
- loop-attachement.php
- single.php
- Delete in each files the php lines that calls category, author, date etc.
Is that ok?
Forum: Themes and Templates
In reply to: Footer Doesn't Stretch across homepageHi deadrawkstar,
I just gave it a quick look, but it seems like in your home page, the closing </div> of the content goes after the footer bottom. You should close it before opening the footer-bottom.
Here is the construction of your current home page
<div id="content"> <div id="footer-bottom">The footer-bottom </div><!-- end of the footer-bottom --> </div> <!-- end of the content -->And it should be like in the other pages
<div id="content"> </div> <!-- end of the content --> <div id="footer-bottom">The footer </div> <!-- end of the footer-bottom -->Tell me if it’s better !
Forum: Themes and Templates
In reply to: How to delete posted on, written by and category?Hi duonosgira,
From what I understood, you want to delete the Post Meta Data, i.e. Date, author.
There is a quick way to do so, adding a line in your style sheet :.meta { display: none}Tell me if it works, and tell me that’s what you wanted. Cheers!
Forum: Themes and Templates
In reply to: How to hide the title of the pageYou’re welcome !
Can you select the topic as resolved (select it the right column of this thread) ?Forum: Themes and Templates
In reply to: CSS? Photoshop? What do I do?…Sorry Parkman, I was kidding, but your question is so vast!
If you have any knowledge of CSS for example, you could start having a look at the WordPress theme, like the basic ones such as Toolbox, or with more options (with an image in the header) such as Twenty Eleven, and see how you make it look like your original Photoshop template.
That’s a first step for example.
Forum: Themes and Templates
In reply to: CSS? Photoshop? What do I do?…I suggest you hire a good web designer (CSS, php, Jquery) who turns you own theme into a handy WordPress site!
Forum: Themes and Templates
In reply to: How to hide the title of the pageHi mdvik,
One way to hide this title is to add a little line in your style sheet :
.post-title { display: none; }Hi DGilmour,
Thank you for your tip.
I actually don’t want to customize the CSS/theme (which is a child theme from Twenty Ten) of each site, but customize a part of the template in a certain way : the
footer.phpI have found a plugin “Header and Footer” which does partly the job, and hacking up the original template, I don’t need to multiply all the files, I just have to create a different footer for each language, and add a line of php from the admin/dashboard of each site, and that’s it, It works!
<?php get_footer('english'); ?> <?php get_footer('spanish'); ?> <?php get_footer('french'); ?>