be.creative
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Switched Themes, A Page is doing something wonkyCan you post a link to the site so we can see? That would be very helpful.
Forum: Themes and Templates
In reply to: [Live Wire] Change color header backgroundHi AliaG
You need to change the background color in the header. Currently it is #13A1EC. Specify the color your looking for below and then copy the code into your css.
#header { background: none repeat scroll 0 0 #13A1EC; }
Humm… Are you uploading it through wordpress or have you tried an FTP, like FileZilla?
Hi ThibaultS-
The theme was last updated in September of this year. A few questions for you:
Are you uploading a zipped file?
and if you unzip the folder are the files all there? If your theme comes with PSD files, they need to be removed before uploading as the file will be too large and will only partially install.Hope that helps. Let me know… Laurie
Forum: Themes and Templates
In reply to: [Tonic] Change Header PictureIn the theme forum I found this:
“In your dashboard area, have you tried going to Appearance->Header? You should see a “Choose Image” button here where you can upload and use your own image.”
Hope that helps
Forum: Themes and Templates
In reply to: Updating WordPress and Problems with the themeUnfortunately this happens when a website does not have regular maintenance and updates. CoffeBreak is a wootheme, not a worpress.org free theme so theme support is not available through this forum. The 2.3 version was in September of 2011. There have been a lot of changes since then, including several major wordpress updates. All likely to be causing your problems.
My suggestion would also be to create a duplicate of the site where you can evaluate, rework and update the theme, plugins and wordpress. After several years, it may be time for a refresh or rework of what you have. It’s never a good idea to do these types of changes on a live site. You don’t want to disrupt your member traffic or deter new visitors.
If you post your url, I’d be happy to take a look. Sorry I don’t have better news, but I’m here to help if you need it ?? Laurie
Forum: Themes and Templates
In reply to: [Spun] Font color in circlesHi chika7-
If you post your url I could be sure, but based on the theme preview this should work:
.hentry.no-thumbnail span {
color: #000;
}Forum: Themes and Templates
In reply to: [Expound Theme] How can I change the sidebar size?Glad that worked! Those are css changes that you made, not php ??
I’m one for learning too! The web is your playground! I do a lot of googling when I’m stuck, see if anyone else is having the same issue, git-hub and stack exchange are great resources, along with the www.remarpro.com & codex of course. I save interesting articles, code, etc in evernote so I have access to it anywhere/anytime. Learnable has some great books/training options as well as Treehouse. Though, sometimes, it’s information overload!
Just keep plugging along, it all fits together like legos. Enjoy!
Forum: Themes and Templates
In reply to: [Parabola] Add more slideIf you are using a child theme, your changes would not be deleted. Create a copy of those files and make your change to the child version.
Forum: Themes and Templates
In reply to: [Virtue] The 'default sorting' box acts wierdCan you post a url so we can see how to best help?
Forum: Themes and Templates
In reply to: [Terrifico] Page Templateglad you found a solution! good luck with your customization!
Forum: Themes and Templates
In reply to: [Parabola] Add more slideYes you can add more slides in settings/presentation page/custom slides.
Hope that helps. Keep me posted!
Forum: Themes and Templates
In reply to: [Restaurateur] the plugin menuThe details say “The theme comes bundled with an optional plugin which you can activate for easy menu management.”
This will allow you to customize menus like lunch, dinner, wine, cocktails, dessert. Likely a great feature for a restaurant!
Without downloading the template myself, I don’t know for sure, but if you look in the plugins tab, it should highlight optional plugins at the top. I’ve seen this in other themes I’ve used where it’s recommended to use a certain plugin.
Hope that helps! Keep me posted.
Forum: Themes and Templates
In reply to: Theme CustomisationCan you post a link?
Sounds like files are missing. How did you move your files to the new site? Did you have a fresh wordpress install and upload your backed-up files and database to the new URL?
If you’re just starting over on the new URL instead of moving what you already did, I would consider a fresh install of wordpress & the theme.
Hope that helps, keep me posted!
Forum: Themes and Templates
In reply to: [Expound Theme] How can I change the sidebar size?Sorry for the delay shootingtime. Family time!
style.css is the name of the file you need to make and include with your child theme. If it’s named the same it will replace any changes from the parent theme as it is read last.
#primary { width: 780px; margin-right: 10px; } #secondary { float: right; width: 220px; margin-left: 10px; }
you needed the closing bracket at the end, and you should be good to go!
If you didn’t make any changes to the float or the margin, you can remove those elements as they are read from the original css.
Hope this helps! Keep me posted ??