paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Suggestions on which theme to choose!Use: Must be very intuitive and easy to use, drag and drop functionality with no coding required.
More often than not, those kind of themes will give you headaches down the road. Most developers wouldn’t use it on their own projects, but yes they will be useful when making sites for clients that don’t care much other than get the site up and running.
More generalist ones include X, Divi, and The7 – I like the look of these but are all the options just too much?
Yes, too much, way too much. But again it depends on the project. Those kind of themes are useful when you just want to get it done with bells and whistles and not too worry about site performance and maintenance. The drag and drop way of building the web is still far away from being perfect.
It’s the first time I’ve done a blog. As competent as your average person with a computer, but can not code and do not desire to learn!
You should start with default WordPress theme, TwentySixteen is a good start. And learn how to use WordPress, which had nothing to do with coding. Spend time and energy learning how to use WordPress, as a user, instead of learning how to use all those theme frameworks.
The correct code to change background color of sidebar area is this
@media screen and (min-width: 1008px) { .site:before { background-color: #ff0000; } }That alone will alter the sidebar area background color. Depending of the color chosen, we might need to make change to the text link in this area to maintain the readable color contrast.
@elaisney @wxmr943 @vettii @groundskeeper_w
First, install one of those Custom CSS plugins and use this code in it, make change to the margin value (the 11.1111% and 20%) to your own.
/*****----- Begin adjusting menu -------*****/ /** * 16.1 Mobile Large 620px */ @media screen and (min-width: 38.75em) { .main-navigation { margin-bottom: 11.1111%; } } /** * 16.4 Desktop Small 955px */ @media screen and (min-width: 59.6875em) { .main-navigation { margin-bottom: 20%; } } /*****----- End adjusting menu -------*****/Forum: Themes and Templates
In reply to: [Sketch] Sketch Menu Horizontal Alignment ChallengeActually this forum is for self-hosted WordPress, yours is a managed site at WordPress.COM which has its own support system.
https://en.forums.wordpress.com/As it is in your custom CSS right now, I would rather change the max-width 50% in .site-navigation and .site-branding than moving the nav itself, but there are many ways to get thing done so whatever floats your boat.
Forum: Themes and Templates
In reply to: Site Title Width CSS@amberelle your site is in maintenance mode right now, figure you might redesign it maybe with other theme. But the problem in this post is not to be fixed with extra CSS, it’s just how you configure the theme settings.
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Reduce size of sidebarNo problem at all, happy to help.
Forum: Themes and Templates
In reply to: Why hover effect applied to different selector?Try adding this to it
.nav-primary .menu li.menu-item-has-children > a { position: relative; }The problem is this .nav-primary .menu li.menu-item-has-children > a::after is absolute positioned and its closest outer container that has relative position is the .nav-primary .menu li which is the whole thing in the li element.
So the code above is to assign the position relative to the right container, the arrow now will not appear at the right/bottom of the whole list (which includes submenus), but on the first level li only.
On a sidenote, I think there is no need to disable the arrow on hover, just leave it on always.
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Reduce size of sidebarWhat you see there is not all the real part of sidebar, it’s the sidebar itself with extra empty space that appears when viewed in devices with big screen-width.
Try re-sizing the browser width-wise to simulate users viewing the site from different devices varying in view-port sizes.
So this is the design. Instead of having border lines around the content page (like TwentyTwelve for example), it leaves off the border lines so we don’t see the outer edges of the page on left and right.
Forum: Themes and Templates
In reply to: Site Title Width CSSObviously it’s how you setup the theme. No such theme would limit the site title area with so little width. So please take a look at Theme documentation on how to properly configure theme options.
Forum: Themes and Templates
In reply to: Website completely changed into a blog – not sure whyTheme won’t update itself, only WP core does automatically updates and usually won’t affect theme unless it’s a very very old theme that contains some outdated functions.
Since the site seems to have very little content, it’s pretty easy to start with a new theme. For longevity of the project, always start the project with most recent built theme.
Luckily I still have the old precious.zip on a backup. Is there any way to revert everything back to the old website or any way to revert to the old wordpress?
You can do the manual theme install which is just dragging the theme folder
https://codex.wordpress.org/Using_Themes#Adding_New_Themes_Manually_.28FTP.29Revert WP core back to the previous version is strongly not recommended, using old theme is also not recommended.
Forum: Themes and Templates
In reply to: [FlatOn] Creating a stand out leave a comment buttonWhat now? What is the benefit of this?
So now we fixed the issue of double loading stylesheets that would drag the site down for no reason. We only need 1 set of stylesheet, not 2 of the same one.
Forum: Themes and Templates
In reply to: Oxygen theme slider not workingBut it works in the news page, and not like in the header.
Is it the way it should be?I don’t understand what you mean. But the slider is for page that’s assigned with Front page template. And if you want this page to be the site front page, you have to set it up here (Settings → Reading)
https://codex.wordpress.org/Settings_Reading_ScreenBTW, the images in the slider (now) are in different sizes because it’s uploaded before changing to this theme. WP only crop images once upload upload. So to get the correct size assigned by theme, delete images and reupload one by one. If there are too many, use Regenerate Thumbnails plugin.
Forum: Themes and Templates
In reply to: [FlatOn] Creating a stand out leave a comment buttonAnother thing about this theme is this, look at line 18 to 29
https://themes.trac.wordpress.org/browser/flaton/1.1.9/includes/enqueue.phpIt will use
get_stylesheet_uri()(automatically enqueue child theme stylesheet if in use) only if the Color in theme option is not set.Forum: Themes and Templates
In reply to: [FlatOn] Creating a stand out leave a comment buttonLast time I messed with the functions.php file it crashed my site.
Always have backup. I suppose you know how to manage files in server (add/delete/edit), if you don’t you are not supposed to make edit in functions.php file. When something go wrong, we should just delete the file and reupload the backup one right away.
Forum: Themes and Templates
In reply to: [FlatOn] Creating a stand out leave a comment buttonRemove this line
wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('parent-style') );Also I don’t think the
, PHP_INT_MAXis necessary. I don’t see/understand why we need that since WP loads child theme function first and the action hook priority number when left empty is default to 10, so the one in child theme will be loaded first which means the parent style enqueued by child theme function will be loaded before child theme own stylesheet and this is what we want.