paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Yoko] entry-title h1 color problemGo to Appearance > Cutomize (or Theme options) and change the link color there, this will affect all links color.
To make change to only that part you mentioned, just make our selector higher in CSS Specificity. The reason your CSS in child theme can’t override the default is because theme injects custom CSS (from theme option) after main CSS, to override it we need to use selector with more/higher Specificity.
Use this code
body #content .page-entry-header h1.entry-title { color: #333 !important; }We add in the body, this is just one in many ways to make sure our selector has more CSS Specificity, also the !important is needed in this case because theme’s default uses it so we have to use it too.
Forum: Themes and Templates
In reply to: [Pure & Simple] Menu Item I Cannot StyleTry override this selectors (via Custom CSS plugin)
.primary-navigation li a:hover, .primary-navigation li:hover a { background: pink; }Forum: Themes and Templates
In reply to: Native WP Gallery – Display # of Imagesto set the number of images that a WP gallery displays
Since the total images in Native WP gallery is set by users upon creating the gallery, so I suppose you mean the number of image column.
We can do that by using “columns” option. The default when not specified is 3, we can change this putting our own number.
Suppose we have this, which will display 3 columns
[gallery ids="729,732,731,720"]We can do this to display them in 4 columns
[gallery ids="729,732,731,720" columns="4"]offer navigation to the next image(s) in the gallery
To do that we need to use some lightbox JS, look for a plugin that says “works with Native WP Gallery”. Since you already have Jetpack installed, try activate the image Carousel module and play around with it.
Forum: Themes and Templates
In reply to: CSS not responding to changesThe DOWN arrow appears only in mobile (small screen situation) and only when the RIGHT arrow on parent item is clicked.
If we removed the down arrow, users can not click to close the child menu items (because there is no symbol or sign to click on).
To remove down arrow, use this code.
.slicknav_open .slicknav_arrow { display: none; }Forum: Themes and Templates
In reply to: [ColorWay] Strange vertical line below colorway theme slider.Another issue, if you don’t mind, is the postal address and tel number as header image. It’s bad UX especially in this case a site with target user group of old folks. Try viewing the site in mobile view, the text in image become unreadable. Postal address and phone number should be real text, copyable.
Forum: Themes and Templates
In reply to: [ColorWay] Strange vertical line below colorway theme slider.It’s part of the slider details, you can put in the slider info via theme option. In other words, configure the theme properly.
If you don’t want that part to appear at all, use this code in Custom CSS Plugin
.salesdetails { display: none; }Forum: Themes and Templates
In reply to: how can i change the margin color of my website?First of all, check theme option, theme might already provided users the option to change background color.
If theme doesn’t have that option, install a Custom CSS plugin, and use this code in it
body { background: #fefefe !important; }Custom CSS plugin (pick a simple one)
https://wordpress.org/plugins/search.php?q=custom+cssForum: Fixing WordPress
In reply to: Sidebar disappeared and widgets not workingWhen I go to widgets in my dashboard, they show as being in the sidebar, but they don’t display there.
Make sure they are not in deactivated mode. If you did that and problem persists, create a new thread in theme’s own sub forum https://wordpress.org/support/theme/colinear#postform (so theme author can help investigate the issue)
Forum: Themes and Templates
In reply to: how can i change the margin color of my website?It seems to me the site prevents right click, right?
Doing so people here won’t be able to help inspect element, not even to mention there is no real practical benefits in disabling right click.
Forum: Themes and Templates
In reply to: Change H1 font size changeIt’s a theme with Page Builder, it injects specific page based CSS along with main CSS. The point of using this kind of theme is so that we can build a website without coding, but it comes with a downside it’s hard to make changes (also it’s buggy and bloat but that also depends on how we look at it).
Since theme offers users put in specific CSS, so we can just use it, learn how the theme works (refer to its documentation) and put in our own font size.
The Custom CSS that we usually use to override theme’s CSS doesn’t work well with this kind of theme.
Forum: Themes and Templates
In reply to: [Melos] Widgets not visible in mobileThere is this #sidebar display:none !important, and also #main width:100% !important going on here, look at line#220 @media only screen and (max-width: 685px).
https://themes.trac.wordpress.org/browser/melos/1.0.10/styles/style-responsive.css#L220So basically theme wants to get rid of sidebar in smallscreen view. Since this theme is build on one of those Page Builder things so maybe this is just one figuration. There might be other configuration that will keep sidebar in smallscreen view.
However this code below when used in Custom CSS section if theme provided (or via Custom CSS plugin) will fix it for you.
@media only screen and (max-width: 685px) { #content #sidebar { display: block !important; width: 100%; } .layout-sidebar-right #sidebar #sidebar-core { margin-left: 0; } }Forum: Themes and Templates
In reply to: CSS not responding to changesDo you mean the slash line on hover?
If that’s so, use this
.menu-item a.menu-image-hovered:hover img.hovered-image { opacity: 0 !important; }Forum: Themes and Templates
In reply to: [Twenty Sixteen] twenty-sixteen "Posts page"However, when these are set the theme only actually uses the “Front Page” setting and the “Posts Page” setting is completely ignored.
Did you mean that when you visit the URL of the page that’s set as “Posts Page”, it doesn’t show list of posts?
Forum: Themes and Templates
In reply to: [Celestial - Lite] expand menu widthI would remove “Home” menu item, since the logo already linked to home and this has become a standard in web design, users know that logo links to home.
also change “About Us” to “About”,
and change “Contact Us” to “Contact”.
Forum: Fixing WordPress
In reply to: Open "Continue Reading" in New Tab with Twenty Sixteen Child ThemeThe php function goes in functions.php in your child theme’s folder.