SomewhatRounded
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Vantage] Linking URLsAs in, create links in the widgets?
You can drag the “text” from the Available Widgets area into the widget area along the right that you’d like it to be in and put your link in there.
If you didn’t want the full link showing, just do something like this:
<a href="http://yourlink.com/thisisthelink">Clicking this will take you to a place</a>Did I understand correctly, or were you trying to do something else? haha
Forum: Themes and Templates
In reply to: change size featured image ???Hey grupgezgin,
When you’re setting the featured image, if you click “Edit Image” below the upload date and current dimensions of the image (on the right hand side) it will allow you to change the image size.
In the example you posted the ‘1150×120’ is actually just apart of the image name; if you did want to edit the height or width in the img tag, you would just have height and width attributes, so it would look something like:
<img id="bg_image" alt="" title="" src="http://grupgezgin.com/wp-content/uploads/2013/11/Grup-Gezgin-s4-1150x120.jpg" height="120">Hopefully that helped!
Forum: Themes and Templates
In reply to: [discover] How to add lines between widgetsGlad I could help! Although I wasn’t quite as speedy this time 😛
I use the same username everywhere (same as my website) and I’m on here quite a bit if you need help with stuff (a lot of other helpful folks here too, of course! That’s one of the best things about WordPress)
The padding thing actually just looks like a copy & paste issue (sometimes when copying and pasting the symbols get switched around/changed), if you look in where you entered your css and change
#categories-2 > ulto#categories-2 > ulit should clear that up!The fb area can either be changed in the widget box, or you could add some iframe styling to the rest of your custom css
iframe { height: 440px !important; margin-bottom: 10px !important; }Forum: Themes and Templates
In reply to: [discover] How to add lines between widgetsNo problem, it’s a lot of information!
The first one is a bit tricky, for spacing at the bottom of your fb box you’ll have to edit the inline styles for the iframe (the css styling will likely be right in the space where you edit your widgets) If you add in:
margin-bottom: 10px;it’ll give you the space there (and if you change the height to 438px it won’t cut off your text at the bottom either 🙂The others are a matter of finding the classes and/or ids for the widgets; the “Other Women Liked” list has a class of
wpp-list, the second list doesn’t actually have a directly assigned class or id so you could either add one in your widget area (it would like something like<ul class="thislist">) or we can just work around it rather easily as well! And last, but not least, the bloglovin’ widget has the idtext-2(IDs have a ‘#’ and classes have a ‘.’)If all of that was confusing, the code below should help 🙂
.wpp-list { padding-bottom: 10px; } #categories-2 > ul { padding-bottom: 10px; } #text-2 { padding-top: 10px; text-align: center; }(The text alignment isn’t necessary but just makes i look nicer)
For the dashed line above your profile picture there’s a pseudo element “first-child” that’ll do the trick;
.widget-container-primary:first-child { border-top: none; }Tedah!
Forum: Themes and Templates
In reply to: [Bueno] Breadcrumb Background Color?Hey,
Did you try using Chrome’s inspector or Firebug for Firefox?
The class you’re looking for is
.breadcrumbHope that helps!
Forum: Themes and Templates
In reply to: [discover] How to add lines between widgetsAwesome!
I actually still see the left and right padding on the
.widget-container-primaryIf you remove that it should look betterAnd now that I look at it again, if you change the padding to 20px instead of the 10 it might look a little closer to what you previously had (but without the nudging) 🙂
Forum: Themes and Templates
In reply to: [discover] How to add lines between widgetsGlad it helped!
A child theme isn’t actually that hard to set up (there’s even a guide here)
It’s not actually the php, but the way the theme has the sidebar set up; with the padding applied to
.widget-container-primaryit’s causing that little nudge to the right because of how many things that css class is attached to.The snippet I’d use would probably be: (and remove the padding from
.widget-container-primary)#sidebar ul { background: none repeat scroll 0 0 #f2f1ef; } ul.xoxo { padding: 0 10px; }Forum: Themes and Templates
In reply to: [discover] How to add lines between widgetsThe Firebug add-on for Firefox is a great tool for figuring out things like this! (There are tools for every browser though) It’ll help pick the design apart and test out changes before actually making them.
Something like:
.widget-container-primary { border-top: 1px dashed #000; }Would give you a line between each widget, but if you wanted something more customized or to have different borders around different widgets, you could play around and apply something similar to them.
Ex. The snippet below would give you a dashed line at the bottom of the “Other Women Liked:” list and the padding would give a little space between the list and the border
.wpp-list { border-bottom: 1px dashed #000; padding-bottom: 1em; }Hope that helps 🙂
Forum: Themes and Templates
In reply to: [Theme: Gamepress] how to change footer widthNo problem!
adding
padding-bottom: 0;to#content-wrapperandmargin-bottom: -20px;tofootershould do the trick 🙂I’m almost positive there’s another way to solve the space between the footer and bottom of the body but I’m struggling to find it tonight haha
Good luck!
Forum: Themes and Templates
In reply to: [Duena] Backround size and slideI just took a look and it looks like you were able to get it working, cheers!
Side note: not sure if I just didn’t really notice before or what but you might want to use a child theme or custom css plugin to make your changes so you won’t lose them when the theme updates 🙂
Forum: Themes and Templates
In reply to: [Theme: Gamepress] how to change footer widthI’m not quite sure what you mean; could you clarify?
Forum: Themes and Templates
In reply to: [Duena] Backround size and slideThe little bar along the top? It’s actually part of the
.page-wrapper.page-wrapper:before { background: none; }or
background: invisible;Let me know if that helps, or if I wasn’t looking at the right thing haha
Forum: Themes and Templates
In reply to: [Theme: Gamepress] how to change footer widthfooter { width: 980px; margin: 0 auto; }^should do the trick 🙂
Forum: Themes and Templates
In reply to: [Theme: Gamepress] how to change footer widthAhh! Forgot to mention, even though I’m sure you’re probably aware: there’s something kinda funny going on with some of your images and they just completely take over the screen.
I just used
.post img { max-width: 200px; max-height: 100%; }But it might be worthwhile for you to look at why it’s happening and figure it out as a learning experience, it’s the best way to learn 🙂
Forum: Themes and Templates
In reply to: [Theme: Gamepress] how to change footer widthWelcome to the wonderful world of wordpress!
Apologies if I missed it, but the first step would be to either create a child theme (http://codex.ww.wp.xz.cn/Child_Themes), or use a custom css plugin so that any changes you make won’t be lost when the theme updates.
Next would be to add something like this to your css:
#prefooter { width: 980px; margin: 0 auto; }It will actually be the same properties that you add to the footer, but there isn’t a need for the hashtag in front because the theme uses the footer element, (if the html said something like
<div id="footer">then you would use #footer)As an added bonus, after you’ve added the css for the prefooter and footer, you’ll notice a black bar that still stretches across the screen which is a part of the content wrapper. If you’d like to remove that, you can give this a go:
#content-wrapper { background: none; /*or background: invisible;*/ }Good luck!