.
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] Help requestedResponded at https://wordpress.org/support/topic/top-menu-dropdown-overlapping-bottom?replies=7#post-5841136
Creating new topic to bumb your old topic would raise a few eyebrows but but you’re right that that topic is about to forgotten though. Even for new topics, if it has more than 3 or 4 responses, I assume that someone has already helping the person and never take a second look. I believe many others do the same. Your old topic are both old and have over 6 replies; I doubt anyone except for the theme author would look at it again.
Forum: Themes and Templates
In reply to: [MesoColumn] Top menu dropdown overlapping bottomOriginal Poster requested additional help in this topic: http://wordpress.org/support/topic/help-requested-1
———–
For your site, you can use this:
#top-navigation .sf-menu a, #top-navigation .sf-menu li { z-index: auto; } li.menu-item { z-index: auto; }Also, you’d probably want to improve the speed of your site. It’s painfully slow.
Forum: Themes and Templates
In reply to: Changing the background-color of the sidebarthe problem is only with long posts/pages or when you have several pages/posts after each other.
Ah, you were talking about the pseudo element; finally we understand each other. Please try this code in addition to the previous code:
.site:before { background-color: #fff; }If you prefer to take responsive design into consideration, you can use this:
@media screen and (min-width: 1008px) { .site:before { background-color: #fff; } }Any of these should work if use in additional to the previous code. Which one to use is entirely up to your personal preferences. You can remove the !important declaration, too, if you feel like it’s unnecessary.
Forum: Themes and Templates
In reply to: Codex: @import vs wp_enqueue_style in child themesI don’t know about internal discussions, but it has been the standard for a few years now to use enqueue instead of @import. It allows much more flexibility to everyone–including theme developer and plugin developers.
Also, @import affects performance, negatively: https://developers.google.com/speed/docs/best-practices/rtt#AvoidCssImport
The recommendation to use enqueue instead of @import has been going around since 2009; it’s a good thing that it’s finally caught on (5 years later, heh). I personally would not recommend @import as the main method again and destroy all that progress.
Forum: Themes and Templates
In reply to: Changing the background-color of the sidebarIf it doesn’t work, then it’s an issue with the way you’re applying the code. It works when applying correctly, see screenshot here: http://i.imgur.com/ArOWkhV.png
I changed it to bright red so we can notice it easier (white bg blend into the default white content to the right).
Forum: Themes and Templates
In reply to: Changing the background-color of the sidebarOh, I looked at the category. This the general forum; the TwentyFourteen is in here: http://wordpress.org/support/theme/twentyfourteen
Sorry for not noticing the tags.
And you can do:
#secondary { background-color: #fff !important; }If you wish to take responsive design into consideration, then you can use this instead of the one above:
@media screen and (min-width: 1008px) { background-color: #fff; }Forum: Themes and Templates
In reply to: Changing the background-color of the sidebarWithout seeing the site or at least the theme template that you’re using, we just can’t help. Sorry.
You said nothing else is changed from default . . . but we don’t even know what’s teh default you’re using.
Forum: Themes and Templates
In reply to: Changing the background-color of the sidebarPlease give us a link to your site. We can’t check the codes with just images.
Forum: Themes and Templates
In reply to: [Virtue] How to remove title from shopping cart item in topbar?Could you please give us a link to your site? It’s easier to solve the problem if we can actually see it.
Forum: Themes and Templates
In reply to: Theme templates with built in PHP loopMy personal recommendation would be Underscores: http://underscores.me/
Many other exist, such as Roots, HTML5Reset, HTML5Blank, etc. However, Underscores is arguably the most active and current most popular starter template for WordPress; heck, many of the official themes from WordPress are based on Underscores, too.
———–
Edit: Just searched around a bit, it seems that according to Konstantin Obenland, an employee at Automattic, every free and premium themes launched on WordPress.com by Automattic in 2013 and 2014 are based on Underscores.
Link to his interview: http://wptavern.com/introduction-to-underscores-a-wordpress-starter-theme-with-konstantin-obenland
You can find Konstatin Obenland listed on Automattic employee list here: http://automattic.com/about/
Forum: Themes and Templates
In reply to: [SKT Full Width] How to Make Titles & Menu Upper and LowercaseIf by “menu” you mean the main site navigation menu, then this will work:
#site-nav { text-transform: none; }This one is for the slider title:
div.slide-title { text-transform: none; }This one is for the site title, don’t know if you would need it:
h1.site-title { text-transform: none !important; }The properties for
text-transformare:- none
- capitalize
- uppercase
- lowercase
Next time though, please post a link to our site here. The demo site isn’t the same as your site; it’s easier when we actually see it.
Forum: Themes and Templates
In reply to: [Stargazer] Adjusting sidebar & content widths?It’s a responsive theme; you need take @media queries into consideration as well, and being more specific would help overwriting the less specific codes:
content width on desktop view
@media all and (min-width: 950px) { .layout-2c-r #content { width: 80%; } }content width on other view (in this case, smaller than 950px in hte default code of the theme).
#content { width: 90%; }The same with your sidebar. Be sure to take both small and large screens into consideration:
@media all and (min-width: 950px) { .layout-2c-r #sidebar-primary { width: 18%; } }on other views
#sidebar-primary { width: 90%; }Forum: Themes and Templates
In reply to: [Smpl Skeleton] Remove blue lines from top of headerIf you mean the blue lines at the top of the page, it’s an image. You could use this:
body { background: none; }Forum: Themes and Templates
In reply to: how can i remove the social icon from my top navbarYou could do this:
#header .social-icons { display: none; }when you want them to display again, just remove the code.
Is there anything in [copying the entire functions.php to child theme] that could be causing the error?
That’s the issue right there. You don’t copy the entire functions.php to the child theme; that file is load differently from the rest.
Your child theme’s functions.php will load in addition to the parent theme’s functions.php. Again, it doesn’t overwrite its parent; it loads in addition to the parent theme’s functions.php.
Read more here: http://codex.wordpress.org/Child_Themes#Using_functions.php