Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fashionistas] Centering Navigation & MenuHey there,
For the menu, something like this:
#main-navigation .sf-menu {text-align:center; height:50px;} #main-navigation .sf-menu ul {display: inline-flex;}Hope this helps.
Forum: Themes and Templates
In reply to: [Theme: Oxygen] How do you make sidebar widgets aligned?Hey there.
That’s a WordPress.com site, you need to get support from them over here:
http://en.forums.wordpress.com/forum/themes
I noted a few differences between our sites when testing the same theme on WP.com, for example the height of the primary container:
http://monosnap.com/image/CDqATfXCvAmKivgWtIYSW6wtRgdq4f
Adjusting the height seemed to help, but it’s like you’re missing content in the center there. Maybe you have a page set for the home page?
For me I get a nothing found message with not articles published.
Either way they the pros over at WP.com are the ones you need 🙂
http://en.forums.wordpress.com/forum/themes
Take care
Forum: Themes and Templates
In reply to: [Adaptive Flat] how to hide single page title homeJust to add, another option is a child theme and then editing the loop.php to remove both instances of the following:
<h2 class="prev-title"><a href="<?php the_permalink() ?>"><?php the_title();?></a></h2>You can read more on child themes here:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [Adaptive Flat] how to hide single page title homeIf it is the item I asked for clarification on then it does work, and it’s a class not an ID. Here is a screenshot of it working:
http://monosnap.com/image/Oo1RgtmrGAYoTceE1arBGlGTWEmrH7
If it’s not working for you then chances are you’ve not placed the CSS late enough in the load sequence. With CSS the last instance called is the one that takes priority. You should place it later.
How are you adding it and where?
You could take it out of that order like this:
.home .prev-title{display:none !important;}However !important should not be used as a first choice, you can read more here:
http://css-tricks.com/when-using-important-is-the-right-choice/
Take care.
Forum: Themes and Templates
In reply to: [Flat] Videos are cut offHey there,
Do you have link to this happening?
Cheers.
Forum: Themes and Templates
In reply to: [Theme: Oxygen] How do you make sidebar widgets aligned?Hey there,
Not sure without seeing it happening, link to the page please. 🙂
Cheers.
Forum: Themes and Templates
In reply to: Embedded Slide Show RemovalHey there.
What theme?
Which site?
Cheers.
Forum: Themes and Templates
In reply to: [Customizr] prevent indent of text in columns?Hey there,
There appears to be some padding set, you could remove that with this CSS:
.row-fluid .span8 { padding-left: 0; }Hope this helps. 🙂
Take care.
Forum: Themes and Templates
In reply to: [Preference Lite] Images in FooterHey there,
If you can add widgets to the footer you could use the Text/HTML widget and add the image that way.
<img src="http://IMAGEPATH" alt="describe image">Just change the image path and the alt tag.
There are alternative options like image widgets:
https://ww.wp.xz.cn/plugins/image-widget/screenshots/
https://ww.wp.xz.cn/plugins/simple-image-widget/screenshots/Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: Removing line code from templateHey there,
I don’t know which theme you refer to, I can’t see the themes code or what you want to actually do. Makes it hard to say.
As this is a commercial theme you will need to chat further with the developer on this one as per forum rules:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Take care.
Forum: Themes and Templates
In reply to: [Adaptive Flat] how to hide single page title homeHey there,
We’re talking about the each post title and just for the home page?
If so you could use this:
.home .prev-title{display:none}If the theme doesn’t have a CSS field option you could use a plugin like this:
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Fixing WordPress
In reply to: [Sunny Blue Sky] remove social media iconsHey there,
If you didn’t want to create a child theme and edit the sidebar.php you could instead use this CSS to hide them:
.social-links{display:none;}And the theme doesn’t have a CSS field then a plugin like:
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [MesoColumn] remove comments closeYa, so did you try what I suggested and create a child theme you can edit the page.php file. This will only remove it from pages then.
If you want the other option of CSS it should be this:
.page #commentpost {display:none;}Take care.
Forum: Themes and Templates
In reply to: [Asteria Lite] Padding around logoHey there,
Totally missed that link before, sorry about that 🙂
Some CSS like this should help shrink that header for you and realign the contents a little:
.header4 {height: 120px;} .logo h1, .logo h2 {margin: 20px;} .header4 #topmenu ul li{height:10px; margin-top:-20px;}Hope this should get what you desire or at least on the way to it. 🙂
Take care.
Forum: Themes and Templates
In reply to: [Asteria Lite] Padding around logoHey there,
If we’re talking about padding on the logo class:
.logo { padding: TOP-VALUE RIGHT-VALUE BOTTOM-VALUE LEFT-VALUE; }If you want one value for all then just enter the one:
.logo { padding: VALUE; }If you want something more specific it would help if you could link to your site please so I could see what’s happening and what you refer too 🙂
Take care.