Forum Replies Created
-
AuthorPosts
-
btwebmedia
ParticipantSorry to hear that @stesod. Thanks for responding. At least you prevented someone else from using the template.
btwebmedia
ParticipantAndy that is exactly what seems like is going on. The new "Uprising" template looks good, but not available in my downloads as a pro plus user. I know companies grow and evolve, but this doesn't seem right. I'll move on to an already existing Studio Press theme since the new themes are really available.
btwebmedia
ParticipantThanks
btwebmedia
ParticipantThanks Anita for verifying that I wasn't going crazy! I'll make a note of "front-page.php" limitations for the widget options.
btwebmedia
ParticipantOk sounds good. Please provide the details.
btwebmedia
ParticipantBrad I place the code in the .site-footer area but with no luck. Is the the correct section it should be placed? Thanks.
btwebmedia
ParticipantThanks Anita.
December 29, 2019 at 12:42 pm in reply to: Metro Theme Header Issues – Needing A Wee Bit of Help #495684btwebmedia
ParticipantThanks for this code. It fixed my spacing issue with the mobile header.
btwebmedia
ParticipantHello: I'm not seeing the "After Header" widget, only the "Before Header". Thanks.
btwebmedia
ParticipantBy modifying this section of the code I was able to fix my issue:
'combine' => array(
'.nav-primary',
'.nav-secondary',
'.nav-header',The original order had the '.nav-secondary' listed first. If there is a better fixed I'm interested. Thanks.
btwebmedia
ParticipantVic thanks for responding. My line 77 in functions is blank. Which lines need to be commented out?
// Setup our responsive menu settings.
function metro_get_responsive_menu_settings() {$settings = array(
'mainMenu' => __( 'Menu', 'metro-pro' ),
'subMenu' => __( 'Submenu', 'metro-pro' ),
'menuClasses' => array(
'combine' => array(
'.nav-secondary',
'.nav-header',
'.nav-primary',),
),
);return $settings;
btwebmedia
ParticipantAny suggestions for this? Thanks.
btwebmedia
ParticipantVictor here's a sample image of what I'm trying to achieve. Will the suggestion to add an above the header widget going to work for this look with the search box and Facebook button? Thanks.
btwebmedia
ParticipantThanks Victor. I assume that I would then use CSS to place the content directly on the header image?
btwebmedia
ParticipantAny help with this? I would like to have "1" product per row on mobile for Woocommerce. Thanks.
btwebmedia
ParticipantI ended up getting it to work by adding this code to my css:
list-style-position: inside !important;
btwebmedia
ParticipantThanks Victor. This must be a Windows issue.
btwebmedia
ParticipantVictor the code worked once it was placed in the "front-page.php" file. Thanks for your help.
btwebmedia
ParticipantThanks for the quick reply. This modification fixed the home page, but my sub pages are now discombobulated. I only need the site-inner to be removed from the home page. Any suggestions?
btwebmedia
ParticipantIssue is resolved now. The plugin named "List category posts" that was used to list posts in a category had the ability to assign CSS.
Example shorcodes are below:
- [catlist name="category_name"] - Displays list of posts from a certain category
- [catlist name="category_name" thumbnail="yes"] - Shows the "featured image" for the post.
- [catlist name="category_name" thumbnail="yes" thumbnail_class="class_name"] - Allows you to add a CSS class to the thumbnail.
- The CSS is used was "display: block" which moved the image beneath the post titles.
Additional Information (If using the "List Category Post Plugin):
If you would like the post titles and images to display as a grid (table) add the following CSS code:
.lcp_catlist {
margin-left:auto;
margin-right:auto;
font-size:16px;
line-height:35px;
}.lcp_catlist li {
width:33%;
min-height:150px;
display: -moz-inline-stack;
display: inline-block;
vertical-align: top;
margin: 0px;
zoom: 1;
*display: inline;
}.lcp_catlist li:after {
content:'.';
height:0px;
visibility:hidden;
display:block;
clear:both;
} -
AuthorPosts