Forum Replies Created
-
AuthorPosts
-
YazminKeymaster
Closing this topic and marking as resolved as no reply from OP after 2 months.
YazminKeymasterClosed and marked as resolved as no reply from OP after 2 months.
YazminKeymasterThe header image can be changed per page (and post, product, category etc.) in the Pro version. This extra option is not available in the free theme, sorry.
I am going to close this topic and mark as resolved as I believe your original question regarding changing the height of the header image has now been resolved successfully.
YazminKeymasterWith Trusted Pro you can change both the icon and the background image individually for each post, page, product, category etc.
Also, Trusted Pro has the option to use a custom header where the “title image” and page/post title is, and it accepts [shortcodes] so if you have a slider plugin (or any other content generating plugin) that uses shortcodes, this will work.
October 17, 2018 at 8:46 pm in reply to: Consistent full screen Website display on all devices #5902YazminKeymasterHi, I’m not completely sure what the issue is.
Is the footer always half the way up the screen on all pages of your site?
Is the footer being displayed across/overlapping your page content?
Do you have a URL I can take a look at to see this problem?October 16, 2018 at 9:31 pm in reply to: How to add Copyright statement to the Exoplanet Footer #5883YazminKeymasterHello Fred,
Exoplanet Pro has the option to replace “Powered by WordPress | Theme: Exoplanet by UXL Themes” in the lower footer with your own text/content.
Should you not wish to purchase Exoplanet Pro, the free version of Exoplanet has a widgetized area ‘Middle Footer’ where you can add any of your available widgets (‘Text’, ‘Custom HTML’ etc) with your own copyright statement. This ‘Middle Footer’ is displayed horizontally between the 4 footer columns widget areas and the lower footer area and it will not leave an empty black space at the foot of the screen.
Hope this helps.
YazminKeymasterHi Juan,
The registration section of a WordPress site is not theme functionality, so I would recommend you check out the WordPress documentation and support or if you are using a plugin that has it’s own registration functionality (e.g. WooCommerce) you should consult with the plugin support/documentation.
YazminKeymasterHi Jan,
The color of the price tag when on sale can be changed at Customize > Shop Options > Sale Color
The ‘On Sale’ text is actually handled by the WooCommerce plugin and not by the theme.
It is a translatable text string, which is why WooCommerce automatically displays it in your site’s language.To change this we would recommend using a plugin such as Loco Translate.
The key thing to note is that in the Loco Translate settings look for the appropriate ‘On Sale’ translatable text string for the WooCommerce plugin and not the Trusted Pro theme.
Edit: Have I misunderstood the second part of your question? You don’t want to change the actual text, just the way it is currently displayed in ALL CAPS?
In this case, add this to Customize > Additional CSS:
.woocommerce span.onsale { text-transform: none; }
Or if the above code doesn’t work as expected, try this instead:
.woocommerce span.onsale { text-transform: capitalize; }
- This reply was modified 6 years, 3 months ago by Yazmin. Reason: extra info
YazminKeymasterTo change the background color of the header from the default grey (#e2e7eb) to white, use this Additional CSS:
#masthead { background-color: #fff; }
YazminKeymasterIn that case, remove the previous CSS and add this instead:
.site-main-menu { width: 100%; } .site-search { display: none; }
YazminKeymasterThe quick and easy way is to hide it by adding the following to Customize > Additional CSS:
.jorvik-search { display: none; }
YazminKeymasterAdd this to Additional CSS, changing the font-size to suit.
.site-title{ font-size: 28px; } #site-description{ font-size: 12px; }
If you also want to change the font size of the site title in the sticky header when scrolling down the page, this will do it:
#masthead.scrolled .site-title{ font-size: 24px; }
YazminKeymasterHi, to change the background color of menu items only, use this CSS (change #aabbcc for your actual color):
#primary-menu a { background: #aabbcc; }
Add the code to Appearance > Customize > Additional CSS or to the stylesheet of a child theme.
It is not recommended to edit the theme’s style.css file directly as your changes will be undone when the theme is updated.YazminKeymasterHi Phil,
Add this code in Appearance > Additional CSS
@media screen and (max-width: 768px){ #featured-post-section{ display: none; } }
YazminKeymasterYou try something like this added to Customize > Additional CSS
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images{ width: 18%; } .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary{ width: 80%; }
-
AuthorPosts