SomewhatRounded
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Parament] Parament Image size problemSorry, @toddgould! Seemed to have missed that post.
You should be able to fix that up by adding
.hentry img { max-width: 100%; }to your custom css/child theme’s stylesheet.Cheers!
Forum: Themes and Templates
In reply to: [Parament] Parament Image size problemIt isn’t resizing because your
#maindiv still only has a width of 660px (that’s the entire section that has your page content, beside the sidebar)What I would do is create a new page template and remove the sidebar, then you can use that template for the page with your comic, and have the main area full-width instead, and have the sidebar out of the way!
If you aren’t already, now would be a great time to use a Child Theme
Forum: Themes and Templates
In reply to: [Celestial - Lite] How to make the banner narrower?That works too!
The easiest fix would be to use
#st-wrapper { overflow: hidden; }Otherwise it’s just a case of playing around with dimensions 🙂
Forum: Themes and Templates
In reply to: [Sugar and Spice] Social Media Icons not aligningThe Google+ is already an available option (unless you wanted a different icon, then my bad!)
They could have been mis-aligned if the image you were using wasn’t the same size as the other icons, but if you were just using the one already available it should have worked! With it not showing up at all, I would recommend checking your social-widget.php file again and just making sure everything is there (and got changed properly, like no ‘facebook’ where tumblr should be, etc.) — I was able to get it going, if this is what you were going for: http://dev.somewhatrounded.com/
There are a few places in social-widget where the new lines have to be created to get everything going correctly, but if it’s still not lining up when you get the icon there, I can give you a hand 🙂
Forum: Themes and Templates
In reply to: [Celestial - Lite] How to make the banner narrower?Yepp, that’s all!
For the slider under the header area, right?
If that doesn’t work, you could try using an
!important, like so:
.theme-default .nivo-controlNav { padding: 0 !important; }Forum: Themes and Templates
In reply to: [Celestial - Lite] How to make the banner narrower?Hey JazzGirl!
You can use custom css or a child theme and add this to the stylesheet to narrow it down:
.theme-default .nivo-controlNav { padding: 0; }Forum: Themes and Templates
In reply to: [Customizr] Remove Box at top of pageAhhh, I missed the point!
Deputy05’s answer is the one you’ll want 🙂
Forum: Themes and Templates
In reply to: [Customizr] Remove Box at top of pageHeeeey…the nav box? It’s part of the theme!
If you’re using a child theme or custom css you can get rid of it using this:
.navbar-inner { background: none; border: none; box-shadow: none; }Forum: Themes and Templates
In reply to: [Fifteen] Changing background colour of post and pagesAnd if you want to change the colour of those underlines for the footer to match, this will do the trick:
#secondary h1.widget-title, #footer-sidebar h1.widget-title { box-shadow: 0 20px 0 -18px #d8ffbb; }Woo!
Forum: Themes and Templates
In reply to: [Fifteen] Changing background colour of post and pagesNot a problem!
The same code mentioned before should work:
#content, .site-content { background: rgba(216, 255, 187, 0.8) !important; border: 1px solid #d8ffbb !important; }The first colour code with the rgba value (red,green,blue,alpha) is what will let it keep the semi-transparency, if you want it to be a solid colour, you can just use the #d8ffbb code 🙂
Forum: Themes and Templates
In reply to: [Parabola] Modify header-extend to full width with CSS?Hey guys!
For linbmcd, you can make the background black to match with the image using this:
#header-full { background: #000; }That way the image won’t get stretched out, or have the nav links over your image text 🙂
For rvargas1981, if your situation is different, or linbmcd if you’d like to use a different image or don’t mind the text being covered, this will work:
#header-full { background: url(your image link here) no-repeat; /*if your image doesn't cover the area with it's natural dimensions use the code below as well*/ background-size: 100%; background-color: #colorthatmatchesyourimage; }And if you are replacing the header image with the above method, you can either remove the original from your theme settings, or just hide it using this:
#bg_image { display: none; }Cheers!
Forum: Themes and Templates
In reply to: [Fifteen] Changing background colour of post and pagesDo you have a link to your site to check out? 🙂 (easier to help that way!)
You’ll *probably* want something like this for the page background(s):
#content, .site-content { background: rgba(0,0,0,0.5) !important; }With your colour choice in there, of course! It doesn’t look like they have the same class/id name to be the same code, but you can combine them (like above) by separating them with a comma to only write the colour out once 🙂
Forum: Themes and Templates
In reply to: [Fifteen] How do I change Hyperlink Color & Divider LineHey Kat!
I don’t see a green underline for your links, but the separator colour can be changed by using this:
#secondary h1.widget-title, #footer-sidebar h1.widget-title { box-shadow: 0 20px 0 -18px #008000; }Simple Custom CSS will work if the theme’s custom CSS area isn’t working for you 🙂
Forum: Themes and Templates
In reply to: [Spun] Large gap between header and contentEeks! Quite the gap!
This should fix it up: (using either a Child Theme or Custom CSS plugin)
.single .hentry, .error404 .hentry, .page .hentry, .search-no-results .no-results { padding: 0 130px; } .entry-content, .entry-summary { margin:0; }Forum: Themes and Templates
In reply to: [Base WP] Change menu items background color.main-navigation li:hover > ais what you’ll want to change/set 🙂