DrakeH
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Themes and Templates
In reply to: Remove View Count from Posts in the Blog pageTry this…
.image-post .hover-box .inner-hover ul.post-tags li:last-child { margin-right: 0; display: none; }Forum: Themes and Templates
In reply to: Remove View Count from Posts in the Blog pageSee if theme supports custom css or if you can use plugin for adding any custom css. In that, you can add these styles.
ul.post-tags li:last-child { margin-right: 0; display: none; }Forum: Themes and Templates
In reply to: Trouble making the sub-menu a smaller font than top menuYou mean the space between items in sub-menu, if so, yes. I see you have css set for submenu items like this
@media screen and (min-width: 783px) { .primary-navigation ul ul a { padding: 11px 10px; // Adjust spacing between items with this.. change 11px value to 7px or so white-space: normal; width: 150px; font-size: 12px; // Adjust sub-menu items font-size with this } }- This reply was modified 9 years, 8 months ago by DrakeH.
Forum: Themes and Templates
In reply to: Trouble making the sub-menu a smaller font than top menuYou should set something css like
ul.sub-menu li a { font-size:12px; }Forum: Themes and Templates
In reply to: [Nirvana] Bottom Menu does not show submenu itemsYou can add little margin to footer items
In your stylesheet, add this
.footermenu ul li { margin-bottom: 5px; }Forum: Themes and Templates
In reply to: Remove sidebar toggle when site is viewed on mobileYou could set display:none to menu-toggle class
.menu-toggle, .sidebar-toggle { display: none; }
Viewing 6 replies - 1 through 6 (of 6 total)