CharlesCA
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] SidebarTo remove the sidebar on the right, Appearance->Theme Options->Layout
Set the global theme to which ever you like.
I am not quite sure what you mean by put the ‘follow box in the menu’ but I think you mean the following. Go to Appearance->Menus->Create New Menu
To keep the naming convention, call it ‘Nav Header’ (the one right above the ‘Follow’ bar). On the left side there are three ways to add a menu, Pages, Links, Categories. Add a ‘Link’ menu item to wherever you like, e.g. Facebook. I do not know how to add icons to the links.
Forum: Themes and Templates
In reply to: [Hueman] Remove spacing between logo and navigationDownload the child theme found here: https://github.com/AlxMedia/hueman-child/archive/master.zip
You use a child theme so that any changes you make to the code won’t be overwritten when there is an update to the current theme.
Once you install the child theme, activate it, then go to Appearance->Editor and put the CSS you wish to use into style.css
I think you are asking about the following setting.
Appearance->Widgets
In the ‘Primary’ widget it should have a ‘AxlTabs’ in it. In the settings you can set the ‘Items to show’.
Forum: Themes and Templates
In reply to: [Hueman] Unable to Make Text Appear Like Demo.As shown in the typography example found here: http://demo.alxmedia.se/hueman/demo/typography/
In your posts you can add the following code
[pullquote-left] Here is your pulled and left aligned [/pullquote-left] [pullquote-right] Here is your pulled and right aligned [/pullquote-right]Forum: Themes and Templates
In reply to: [Hueman] Hi. how can i resize the top menu?The padding (and therefore the height of the menu) is contained in the link. Currently the top and bottom padding is 15px. In this example I changed it to 5px.
If you have the child theme installed https://github.com/AlxMedia/hueman-child/archive/master.zip
Appearance->Editor and edit style.css
.nav > li > a { padding: 5px 14px; }Forum: Themes and Templates
In reply to: [Hueman] Disable Tag List After PostThere is no option to do it. If you have installed the child theme from here:https://github.com/AlxMedia/hueman-child/archive/master.zip
Then go to Appearance->Editor and make sure you are editing style.css
Add the following code after
/* ------------------------------------------------------------------------- * * Theme customization starts here /* ------------------------------------------------------------------------- */.post-tags { display: none !important; }Forum: Themes and Templates
In reply to: [Hueman] Change Number of Posts in Category PagesSettings->Reading->Blog pages show at most
Forum: Themes and Templates
In reply to: [Hueman] Some QuestionForum: Themes and Templates
In reply to: [Hueman] Adding social media buttonsMake sure the icon name is specified. For example facebook is (without quotes) ‘fa-facebook’
Forum: Themes and Templates
In reply to: [Hueman] Menu color changeInteresting. I don’t know why each of the “@media only screen and ” has a .mystyle in them but I removed all the code in there and just have this as my style.css now. – and it works!
@import url("../hueman/style.css"); .entry { color: black; } .entry.excerpt { color: black; } .site-title a { display: block; color: #294657; max-width: 100%; } /* Global */ .mystyle { } @media only screen { #nav-header .nav li a { color: #000 !important; } #nav-header .nav li > a:hover, #nav-header .nav li:hover > a, #nav-header .nav li.current_page_item > a, #nav-header .nav li.current-menu-item > a, #nav-header .nav li.current-menu-ancestor > a, #nav-header .nav li.current-post-parent > a { color: #000 !important; } #nav-topbar .nav li a { color: #000 !important; } #nav-topbar .nav li > a:hover, #nav-topbar .nav li:hover > a, #nav-topbar .nav li.current_page_item > a, #nav-topbar .nav li.current-menu-item > a, #nav-topbar .nav li.current-menu-ancestor > a, #nav-topbar .nav li.current-post-parent > a { color: #000 !important; } .toggle-search { color: #000 !important; } .nav-toggle { color: #000 !important; } } /* Tablet - 800px, 768px & 720px */ @media only screen and (min-width: 720px) and (max-width: 800px) { .mystyle { } } /* Mobile - 480px & 320px */ @media only screen and (max-width: 719px) { .mystyle { } } /* Mobile - 320px */ @media only screen and (max-width: 479px) { .mystyle { } }Forum: Themes and Templates
In reply to: [Hueman] Display Posts using shortcodesThank you! That’s a neat trick.