Asta - Just Good Themes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Invisible text in HTML tableHi there,
there is an error in the stylesheet of your theme. The color value for the table element is set to #0000:
table { font-size: 13px !important; font-family: arial, helvetica, sans-serif; color: #0000; line-height: 18px;}
It should be #000.
Hope this helps.
Regards, Asta
Forum: Fixing WordPress
In reply to: Bauhaus fontHi,
if you use a commercial theme and need support, please go to their official support channel (https://themeforest.net/item/avada-responsive-multipurpose-theme/2833226).
Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.
Forum: Fixing WordPress
In reply to: Delete Numbers Homepage ShopI recommend asking at https://www.ads-software.com/support/theme/fruitful so the theme’s developer and support community can help you with this.
Forum: Fixing WordPress
In reply to: how to determine which php file for the siteHi,
if I understood your question correctly, here is the link to the diagram showing which theme files are called to generate a WordPress page based on the WordPress template hierarchy.
Forum: Fixing WordPress
In reply to: How do I remove the white space above my meta slider image?No, you should not remove the styling for paragraph element but remove empty paragraph elements. How do you add a slider? Is it a widget since it is wrapped in a div with a class textwidget. Maybe you have left empty lines?
Forum: Fixing WordPress
In reply to: Nav iconsHi,
you are using an image for your home and social icons (https://threadstofashion.com/wp-content/themes/threadstoFashion/img/threadstoFashion-navIcons.png). So to make the icons larger you need to edit this image or you can use an icon font, like fontawesome (https://fortawesome.github.io/Font-Awesome/icons/) or other, instead.
Hope this helps.
Asta
Forum: Fixing WordPress
In reply to: How do I remove the white space above my meta slider image?Hi Tara,
I viewed the source of your website and I can see that there are empty HTML paragraph elements above and below your slider element:
<div class="textwidget"> <p> </p> <div class="metaslider metaslider-nivo metaslider-136 ml-slider" style="width: 100%;"> ... </div> <p></p> </div>
Since your paragraph elements have 20px bottom padding, that’s why the white space appears.
Asta
Forum: Fixing WordPress
In reply to: [gallery] Can't left justify image in galleryHi,
first, your #main element has the width of 948px, the #container element inside it has the left and right margin of 220px and you set the width of the #content element to be 900px when it can be 508px at most. So you should fix this.
As for the image, if you want it to be aligned left, you should change
#content .attachment img { display: block; margin: 0 auto; } #content .attachment img { max-width: 900px; }
to
#content .attachment img { display: block; margin: 0; max-width: 100%; }
in your css.
Hope this helps.
Forum: Fixing WordPress
In reply to: Adding a "Next and Previous buttonHi Lee,
can you give a link to your site?
Forum: Themes and Templates
In reply to: [FlyMag] How to enable "Front Page" classHi,
I think you need to create a static page for your home page and select the template “Front Page” in “Page Attributes” subpanel in the page editing screen.
Forum: Themes and Templates
In reply to: [Renden] Adding a logo looks weirdHi,
I’ve checked your link and as I see you’ve uploaded the header image not logo. This theme has an options panel under Appearance -> Theme Options. You can add your logo there in the “General Settings” panel.
Hope this helps.
Forum: Fixing WordPress
In reply to: custom excerpt lengthHi,
you can try this:
function my_custom_excerpt_length( $length ) { if ( is_front_page() ) return 20; else return 100; } add_filter( 'excerpt_length', 'my_custom_excerpt_length' );
Forum: Fixing WordPress
In reply to: How can I change the color of the selected nav bar category?to innuvo:
“small arrows” (child selector) assure that only direct children will be selected. If you remove the “small arrows”, sub-menu links will become green as well. Also, I think there’s no need to use !important in this case. It should only be used in certain circumstances.
Forum: Fixing WordPress
In reply to: How can I change the color of the selected nav bar category?The piece of code I gave you works, I’ve tested it before posting. It just depends where you add it. To be sure that the style will not get overridden you can give the selectors higher specificity:
.main-navigation .nav-menu .current_page_item > a, .main-navigation .nav-menu .current_page_ancestor > a, .main-navigation .nav-menu .current-menu-item > a, .main-navigation .nav-menu .current-menu-ancestor > a { color: #00ff00; }
Hope this helps.
Forum: Fixing WordPress
In reply to: Main Navigation Menu Not WorkingWhat theme do you use? Maybe your theme does not support sub-menus?