Orange Web Dev
Forum Replies Created
-
Forum: Hacks
In reply to: duplicate functions.php renamed diff folder.@catacaustic Thanks.
I’m sure it isn’t to hard to find. I just thought someone on here might know off hand.
I am using a child theme. But I’d like for this file to be called to outside of theme if possible.
I know it’s the proper WP way. But I still don’t like the idea of something more back-end being associated with a front end theme. because i’m not changing the front end theme.
Forum: Themes and Templates
In reply to: How to change menu colors and footer color in Vantage themeCould you provide a link to the website?
Forum: Themes and Templates
In reply to: [BresponZive] removing sidebarCould you provide a link to the website?
Forum: Themes and Templates
In reply to: [Frontier] Notice: Undefined index: body …Could you please provide us the code from the relevant file and line, so we can examine it?
I would suggest taking a look at this thread:
http://stackoverflow.com/questions/19263390/wordpress-loading-multiple-scripts-with-enqueue-noobForum: Themes and Templates
In reply to: [Nulis] Social Link (Minor) ProblemsMy bad this is the correct place.
For some reason it wasn’t showing on my computer the first time I checked this thread.
Forum: Themes and Templates
In reply to: [Nulis] Social Link (Minor) ProblemsWhat Theme are you using?
This is general theme support.
We can inform you how to fix the code if you give us a link.
But we can’t fix the theme, for that you will need to message the theme creator.
And the Theme creator won’t see this. You need to contact them directly through the page you got it from.
Forum: Themes and Templates
In reply to: Mobile only background OxygenYou can. You just need to use Media Queries.
i.e. put in a css file
@media screen and (max-width: 736px) { /* insert css code here */ }i.e. any screen smaller then 736px use this css.
736 is the Iphone 6 PlusIf you wanna choose an in-between you could do
@media screen and (min-width: 500px) and (max-width: 736px) { /* insert css code here */ }i.e. above this and below this.
Then your site will use that code only when being viewed from that screen size.
Forum: Themes and Templates
In reply to: [Fashionistas] Centering sidebar widget & font changeThis only happens in Firefox from what I can see.
Not sure why though.Forum: Themes and Templates
In reply to: [Albar] Auto resizing header doesn't workYour link does not work for me.
Forum: Themes and Templates
In reply to: [Minamaze] Move the logoCould you provide a link to the website?
Forum: Themes and Templates
In reply to: [Fashionistas] Removing the THICK black widget lineAnytime, I just answered another one of your post. haha.
Good luck!
Forum: Themes and Templates
In reply to: [Fashionistas] Centering sidebar widget & font changeAdd the following code to style.css or where ever you are putting custom css changes.
aside#recent-posts-10 { text-align: center!important; font-family: Georgia!important; }And it should now look like you want it.
Forum: Themes and Templates
In reply to: [Fashionistas] Removing the THICK black widget linePlace this in your style.css or where ever you are putting in custom css changes
h3.widget-title { border-bottom: none!important; }And it should be gone.
Forum: Themes and Templates
In reply to: [Fashionistas] Removing the THICK black widget lineThe website has up the offline page. So I can’t see what you are talking about.