Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Responsive] 404 errorHey there,
Maybe there is nothing on the link, so it returns a 404 not found?
You didn’t provide a link to your site or confirm if there is suppose to be an article or something that should be there.
Take care.
Forum: Themes and Templates
In reply to: [Limelight] Icons on themeThere is a chance that the theme has a CSS field in the options but I haven’t looked, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Best not to edit directly, doing this would result in changes being lost upon every update unless you’re careful. 🙂
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: wordpressmu only one themeCan you show me a screenshot of your network admin themes area:
/wp-admin/network/themes.php
And then of:
/wp-admin/themes.php
For plugins, if you network activate those then they will not show in the plugins area of the sub site, they are activated and cannot be deactivated by site admins. Some plugins can only be network activated, some plugins when network activated only appear in the network area with settings. It depends.
Take care.
Forum: Themes and Templates
In reply to: [Theme: Hueman] Change color of social icons on sidebarHey there.
You don’t need to add the RGB or it’s alpha.
The CSS is most likely not being called late enough and thus something else takes priority.
You can test with !important to see if that works:
.sidebar-top p{color:#000 !important;}You may wish to read about !important and specificity:
https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity
Take care.
Forum: Themes and Templates
In reply to: wordpressmu only one themeHey there,
If you’re using WordPress Multisite you first need to network activate the theme before you can activate it on any subsites. Site admins won’t see those themes until they’re network activated:
Admin –> Network –> Themes
You can also add them from there too, you can’t add them from subsites. Multisite is designed like WP.com where people signup for their own site, you wouldn’t want them uploading their own code because that would be dangerous for you.
http://codex.ww.wp.xz.cn/Network_Admin_Themes_Screen
Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: [Make] White space at bottom of siteHey there,
Do you have a link to your site so we can see what you’ve done and how it looks.
Take care.
Forum: Themes and Templates
In reply to: [Theme: Hueman] Change color of social icons on sidebarHey there.
I was looking at those icons in the footer originally, they are hard to see now with the colour you went for as it changed both.
If you wanted to make those white then you can target just the footer area like this:
#footer .fa-facebook-square:before { color:#fff; } #footer .fa-instagram:before { color:#fff; }Looking at the CSS you have the colour twice, this is found in the custom.css file you have there:
.sidebar-top p { float: left; color: #fff; color: rgba(255,255,255,0.8); font-size: 16px; font-weight: 600; text-transform: uppercase; line-height: 24px; padding: 3px 0; }So you want to change that colour to something darker.
Take care.
Forum: Themes and Templates
In reply to: Show post titles only🙂
If you want to remove all the spacing:
.entry-header, .site-content article { margin-bottom: 0; }That basically takes it back to 0 for the margins there.
Hope this helps 🙂
Forum: Themes and Templates
In reply to: [Theme: Hueman] Change color of social icons on sidebarYou said I won’t see change if my browser is larger. Well – it is my resolution is 1920×1200. I tried to modify this and I changed max-width to 1960px and now I see the changes.
That code would have been to target smaller resolutions, it’s to make the themes more responsive on smaller screens.
For those two icons you would use this:
.fa-facebook-square:before { color:#fff; } .fa-instagram:before { color:#fff; }And change the colour as you require 🙂
If there is some CSS changing that within @media then you’d also need to target that resolution too.
Take care.
Forum: Themes and Templates
In reply to: [Limelight] Icons on themeHey again.
This is done through CSS with a font:
.fa-facebook-square:before { content: "\f082"; } .fa-twitter-square:before { content: "\f081"; } .fa-google-plus-square:before { content: "\f0d4"; } .fa-rss-square:before { content: "\f143"; }They use FontAwesome:
http://fortawesome.github.io/Font-Awesome/icons/
You could either change the colour, Look at their options or you could do your own thing like:
.fa-rss-square:before { content: url(IMAGEURL); }Replace IMAGEURL with a url. Or you could look at doing your own font thing:
http://www.dafont.com/search.php?q=social
Hope that helps.
Take care.
Forum: Themes and Templates
In reply to: Show post titles onlyHey again,
You don’t want much do ya? ha ha 🙂
If you didn’t want any of the meta you can use:
.home .comments-link{display:none;} .home .entry-meta{display:none;}If you wanted to keep the date then we’ll need to edit code and do this in a child theme because something like “This entry was posted in” doesn’t have it’s own class/id.
Let me know if that CSS will do what you want 🙂
Take care.
Forum: Themes and Templates
In reply to: [Theme: Hueman] Change color of social icons on sidebarHey there,
That CSS (the part after @media) targets screen/browser sizes between 479px and 960px so if your browser is larger or smaller you won’t see a change.
You didn’t post a link to your site so I don’t know which icons you’re using, but lets say you wanted to target the Twitter one then you could add this:
.fa-twitter:before{color:#000;}If you share a link then I’d be more than happy to help further 🙂
Take care.
Forum: Themes and Templates
In reply to: Show post titles onlyHey there,
You could look at doing something in the code, or you could use some simple CSS:
.home .entry-content{display:none;}Would that work for you?
Let me know.
Forum: Themes and Templates
In reply to: [Limelight] Icons on themeHey there,
You could upload your own, or you could use some CSS to change them.
I couldn’t see those icons in the preview of this theme, perhaps you could include your website link for us please.
Take care.
Forum: Themes and Templates
In reply to: [Hueman] Featured image not showing in RSS feedHey there,
Would one of these plugins help:
https://ww.wp.xz.cn/plugins/featured-images-for-rss-feeds/screenshots/
https://ww.wp.xz.cn/plugins/featured-image-in-rss-feed/
Take care.