coredesigners.net
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Ribosome] Recent Posts/Archives under Blog TitleCan you give link to your website?
Forum: Themes and Templates
In reply to: Increase Menu WdithAdd these custom css and it will solve the issue.
.width-container { width: 1024px !important; margin: 0 auto; }.right-wrapper { float: right; width: 700px !important; }Forum: Themes and Templates
In reply to: Increase Menu WdithCan you give link to your website?
Forum: Themes and Templates
In reply to: [Ribosome] Can't change menu color using Custom CSS featureAdd this in custom css and it will work.
.main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul { background-color: #00988F !important; }Forum: Themes and Templates
In reply to: [Maskitto Light] Custom Social Icon and LinkYou should search for this div.
<div class="col-md-5 col-sm-5 text-right soc-icons"> <a href="https://plus.google.com/114141424249250087936/" target="_blank"><i class="fa fa-google-plus"></i></a> </div>And replace the link init with your link. If you find it then just make a backup and try to replace it and check the result.
Forum: Themes and Templates
In reply to: [Menu] Navbar is broken when viewing a postI have checked it is working fine on my laptop.
Forum: Themes and Templates
In reply to: [Anaglyph Lite] Page Title in Anaglyph LiteUsing this css style will hide the title.
.sub-page #page-title { height: 150px; text-align: center; display: none; }Forum: Themes and Templates
In reply to: [Enigma] Moving Custom logoYou have to include both logo and nav in same div to do this. Also, take care of column sizes.
Forum: Themes and Templates
In reply to: [Connexions Lite] Remove image croppingHave you tried after removing the class “attachment-blog-shortcode-thumb” from the img tag.
<img src="https://wp-themes.com/wp-content/themes/connexions-lite/images/front-blog-img.jpg" alt="Elements" class="attachment-blog-shortcode-thumb wp-post-image">Forum: Themes and Templates
In reply to: [Maskitto Light] Custom Social Icon and LinkEditing WordPress files is not good and you may get into some big problem. So, recommended way is to create a child theme and using functions include it. Or you can use any plugin which let you do that.
Forum: Themes and Templates
In reply to: Help with button nav barFontawesome libraries are not loading on other pages. Be sure to include that libraries in the header.
Thanks,
Core DesignersTry using plugin for that. It will be easy.
Forum: Themes and Templates
In reply to: [Hueman] Child Theme Configurator pluginIt is the problem in compatibility. You should contact the makers of child theme configuration or try something similar.
Forum: Themes and Templates
In reply to: [Cannyon] Footer Sidebars: Decrease space below textYou can edit the styles in child theme.
Here is the style yo edit:
footer div.mythemes-social { text-align: center; padding-top: 25px; padding-bottom: 25px; }you need to change the padding to fit your needs.
Forum: Themes and Templates
In reply to: [Responsive Mobile] Mobile menu fully expanded?You have to hide the products sub-menu. It should expand when someone clicks it.
I have included a sample example which would help you.
You need to add this type of JavaScript:
$(function() { var menuVisible = false; $('#menuBtn').click(function() { if (menuVisible) { $('#myMenu').css({'display':'none'}); menuVisible = false; return; } $('#myMenu').css({'display':'block'}); menuVisible = true; }); $('#myMenu').click(function() { $(this).css({'display':'none'}); menuVisible = false; }); });For this HTML code:
<div id="menuBtn">click me</div> <nav id="myMenu"> <ul> <li>entry 1</li> <li>entry 2</li> <li>entry 3</li> <li>entry 4</li> </ul> </nav>