Wolfs bRain
Forum Replies Created
-
Forum: Themes and Templates
In reply to: div backgroundHi Yi, heres the css you are looking for.
.site-main{ background:url("put the image url here") }
Let me know if you have anymore problems or questions.
– Wolfy and Brain (∪ ? ∪)
Forum: Themes and Templates
In reply to: [ColorLight] content width#primary{ width:50%; } #secondary{ width:50%; }
Do you want the widths changed only for that page? If so you can put .page-id-57 infront of the selectors like this.
.page-id-57 #primary{ width:50%; } .page-id-57 #secondary{ width:50%; }
You can change the widths to whatever you want. If you have anymore questions, feel free to ask.
– Wolfy and Brain (╯?.?)╯
Forum: Themes and Templates
In reply to: CSS code not changing thingsHe found it in your parent themes style.css file. By the look of your site seems your getting the hang of it. Mazeltov!
If there’s anything specific on the site you’d like to change ask away.
Forum: Themes and Templates
In reply to: [Highwind] GravitronHi Kristy,
I managed to take a look at your site and this is the code you would need.
.site-intro .avatar {
background:url(“”)
}`Just place the url to the background picture you wish and it’ll work like a charm.
As for a child theme. It is a way to be able to change code on your site without having to worry of the code you change to be deleted with the next update on your theme. Reason why its not recommended to change any code on the parent theme. Here’s a link explaining how to create one:
https://codex.www.ads-software.com/Child_Themes
There are also plugins that will allow you to change css such as:
https://www.ads-software.com/plugins/simple-custom-css/
I’ve never personally used a plugin for this and im more inclined to making a child theme but the choice would be yours.
I hope this helps you out. Any further questions please feel free to ask.
Wolfy and Brain
Forum: Themes and Templates
In reply to: [ColorLight] content widthHey Jsshuai,
You can increase the width of any theme’s content area with css. If you link me I’ll tell you the css you need to apply.Forum: Themes and Templates
In reply to: CSS code not changing thingsHi Nollie
I’m not exactly sure what part of your site it is that you’d like to change. But i searched through your html to try and find what you might be wanting to change.Try this code and let me know if these parts of the site are the ones you wanted to change.
#post-5 > div {
color: green;
}
#masthead > a {
color: red;
background-color: red;
}If you have any more questions please feel free to ask.
Wolfy and Brain
Forum: Themes and Templates
In reply to: [Theme: Thesis 1.8] Custom File Editor CSS Won't SaveHey keeb,
One of the best ways to change your css would be to create a child theme. Its really very simple. Here is a link to a guide explaining how.https://codex.www.ads-software.com/Child_Themes
Once you make your child style.css file. Id suggest downloading the Advanced code editor plug in and you can edit the style.css file by going to appearance and then editor. You can also try and use a plugin to edit your css. I’ve never used a plugin to edit css but here is one i found with good reviews.
https://www.ads-software.com/plugins/simple-custom-css/
Hope these help.
If you have any further questions feel free to ask.
Wolfy and Brain @(^_^)@
Forum: Themes and Templates
In reply to: [Pilcrow] Cannot center text on top of pageGlad it helped terry. But like Kathryn mentioned just make sure the changes wont be changed with your parent themes update. Other than that enjoy!
Contact me anytime if you need any help. I’m always available.
Wolfy and Brain @(*_*)@
Forum: Themes and Templates
In reply to: my wordpress theme is a hot mess, can someone help?Hi Darby,
If you can post a link to your site i can take a look at it and try to come up with some css that can help you with your title colors and such.Mean while i can tell you the way to post YouTube videos on your site. If you have a sidebar widget all you have to do is drag and drop the Text widget into the sidebar you will be using and enter the embed code. Give it a title and Shazaam your set.
To get the embed code for your youtube video just click on share and then embed. You will see the code there. This is what the code looks like:
<iframe width="420" height="315" src="//www.youtube.com/embed/zUtnwcv-quE" frameborder="0" allowfullscreen></iframe>
Hope this helps a bit. If you have any further questions feel free to ask.
Wolfy and Brain @(*_*)@
Forum: Themes and Templates
In reply to: [Pilcrow] Cannot center text on top of pageHi terry,
I took a look at your site and found that you have it as#site-title {
text-align: right;
}The code that Kathryn gave you is correct. I input it to try it out and it worked. If it doesn’t Work still there are a couple options. One is to type in this code instead.
#site-title {
text-align: center !important;
}The other option is to try to change the css through a child theme. Here is a link that explains step by step how to create one.
https://codex.www.ads-software.com/Child_Themes
Hope this helps. Anything else feel free to ask.
Wolfy and Brain @(^_^)@
Forum: Themes and Templates
In reply to: menu doesn't show in the barHey Helga, figured it out for you. Hope this is how you wanted it to look.
#menu{ float:right; } #menu-right { float:right; }
Hope it helps, tell me if this is what you were looking for.
– Wolfy and Brain ∩(︶▽︶)∩
Forum: Themes and Templates
In reply to: how to removeThat looks to me like a “header” menu. You will have to make a new menu the way I described and assign it to the “header” position.
Forum: Plugins
In reply to: [Meteor Slides] WordPress Twenty FourteenHello again Bob,
Josh actually made a tutorial for this already. His whole site is super helpful. Check it out. Adding a Specific SlideshowForum: Themes and Templates
In reply to: how to removeIf I understand what you are saying, you should go to dashboard > appearance > menus. There you can create a custom menu, decide where its located and add any menu items you want in any order, without any code. Let me know if you figure it out.
Forum: Themes and Templates
In reply to: Parament theme: multiple background colors?If you know css, this should be simple. You know how you can change the background color using:
body{ background:orange; }
If you want different colors on different pages then just specify the page id to each page, like so…
.page-id-1 body{ background:orange; } .page-id-2 body{ background:yellow; }
This is only an example, so you will have to find your specific page ids yourself. If you link me to your site, I could take a look at it for you and help you find them.
If you have any other questions, just ask.
[ Signature moderated. ]