rgchang
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Header plroblem after new updateAfter the update, check to see if your image is still in your img folder?
is the url path correct?
Forum: Themes and Templates
In reply to: Fix Alignment of a SectionHmmmm……
I think you would have to manually over ride the themes style.
At the very bottom of the style.css file, type in this code
.vc_column_container>.vc_column-inner {
padding-left: 0px;
}Forum: Themes and Templates
In reply to: [Hueman] Header plroblem after new updatehello doroki,
Give this a shot. Delete background: #333333; from your #header
Forum: Themes and Templates
In reply to: Fix Alignment of a SectionMost likely Style.css, but I would look in both files just in case
When you’re in style.css or custom CSS file, press “Ctrl+f” for windows or press “command+f” for mac for a search bar to pop up. From there, type in “.vc_column_container>.vc_column-inner”. The search bar will help you find the class name you’re trying to target.
Sorry, if this was confusing.
Forum: Themes and Templates
In reply to: [Tiny Framework] No search bar in Child Theme Examplehello kaaimangroep,
I was able to accomplish a search bar using this code in my header.php
<?php get_search_form(); ?>
In order for the search bar to work, you would need to create a search.php file if the theme you’re using does not have it.
Forum: Themes and Templates
In reply to: Fix Alignment of a Sectionhello arbazkazi,
Give this a shot. In your css, target this class name and remove the line of code below
.vc_column_container>.vc_column-inner {
padding-left: 15px; <——– delete this line of code
}Forum: Themes and Templates
In reply to: dropdown menu in 2 columns?Forum: Themes and Templates
In reply to: dropdown menu in 2 columns?Forum: Themes and Templates
In reply to: [Virtue] Remove spacing above and below LogoYou’re welcome
Forum: Themes and Templates
In reply to: [Zerif Lite] Need help centering the menu bar@media (max-width: 767px)
.navbar-inverse .navbar-nav > li a {
text-align: left; <—– delete this
}Forum: Themes and Templates
In reply to: [Hueman] Secondary sidebar moved after updatehello consultorseguridad,
Which sidebar are you talking about? The More sidebar with the twitter feeds?
Where was the sidebar before? Top right or top left?
Forum: Themes and Templates
In reply to: [Zerif Lite] Need help centering the menu barhello hertniks,
In your css, try
.nav {
text-align: center;
}if the above code does not work, try the code below
.navbar-nav {
text-align: center;
}Forum: Themes and Templates
In reply to: dropdown menu in 2 columns?hello lulupont,
I inspected your dropdown menu on your website. Looking at your html dropdown, you would have to create 2 <ul class=”cb-sub-menu”> tags inside of your <div class=”cb-links-menu”>. Inside each
- tag, only place in 6
- tags.
In css
.cb-sub-menu {
display: inline-block;
}let me know if this helps
Forum: Themes and Templates
In reply to: [Virtue] Remove spacing above and below Logohello Mickle Berra,
Looking at your website, there are padding above and below your image. Try adding this code in your css file.
.col-md-12>#logo {
padding: 0px;
}