ikaring
Forum Replies Created
-
No. I cant replicate it.
It puts contents into columns even in preview version.Forum: Fixing WordPress
In reply to: Images blurry in SliderAh, that make sense.
To make it crisp in your environment, you need to upload double sized images, and theme setting to use them instead of 960x420px ones.However, that might affect non-retina displays with too big images. Or might not because of responsive images feature introduced in WP4.4.
I dont fully understand the feature, so pls check by yourself.Forum: Fixing WordPress
In reply to: Images blurry in SliderUmm. The images displayed in my browser are original ones, 960x420px, and looks ok.
Is your window wide enough to display 960px wide images?
WordPress uses smaller images for smaller window or shrinks images.Another doubt is about cache. What if clear cache of your browser?
Forum: Fixing WordPress
In reply to: Images blurry in SliderI dont think ppi affects resizing quality.
As to file type, resized quality might slightly differ, I guess. But can’t tell which is good.
It depends on the image.BTW you can set compression quality for jpg. Pls check this article.
http://www.wpbeginner.com/wp-tutorials/how-to-increase-or-decrease-wordpress-jpeg-image-compression/Forum: Fixing WordPress
In reply to: Images blurry in SliderHi.
WP generates resized images if original image is larger than 960x420px. ( It is set in your theme. ) Since the resizing is done programatically, it might create blurry images.For example, original Again.png has 1980x866px.
I suppose that is a doubled image you mentioned above.
If so, original size is 960x433px, and the height is taller than 420px.
That means WP gonna resize and create 960x420px image Again-960×420.png, which is used in the slider.You need to upload 960x420px images in order to show original images.
Forum: Fixing WordPress
In reply to: Create Page with Sortable List of DataOr you can set
display: none;instead ofmargin-top: 0;.
That’s gonna be easier.However, pls note that updating the theme will delete your customizations.
To avoid that, it is recommended to use child theme.
See Codex:
https://codex.wordpress.org/Child_ThemesAfter following the steps in the page, and suppose you have style.css and functions.php in child theme directory, one more file is required for removing <header class=”entry-header”>.
That is content-page.php.
So duplicate content-page.php from your parent theme directory ( topcat-lite right? ) to the new child theme directory.
Remove <header> block.Forum: Fixing WordPress
In reply to: Create Page with Sortable List of DataOK.
You have<br>tag in<header class="entry-header">.
Remove the<header class="entry-header">block, if you can.
If not, remove the<br>tag and adjust css to remove margin-top of header.entry-header, like so;header.entry-header { margin-top: 0; }Hope that works.
Forum: Fixing WordPress
In reply to: Create Page with Sortable List of DataHi.
MixItUp looks good to me, too.I saw your page today, and it seems you are almost there.
Since WordPress uses jQuery by default, you do not load another jQuery yourself.
No need to add this line.
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>Actually it is better enqueue scripts with wp_enqueue_scripts function in functions.php, but let’s leave it for now and make filtering function first.
( Just for your reference )
https://developer.wordpress.org/reference/functions/wp_enqueue_script/Now you have filter buttons like so;
<button class="filter" data-filter=".large">Large Spaces</button>Set ‘large’ class for <div> of each venue with large spaces, like so;
<div class="mix large">
‘caterer’ class for venue with in-house catering.
<div class="mix caterer">
You can use multiple classes as you need.
<div class="mix large caterer outdoor">That’s it!
However, I think you need to add those classes somehow using tag or custom taxonomy or maybe custom field.Forum: Fixing WordPress
In reply to: Text Widget Text ColorHi, D. Stanley.
I know it is in its own box.
It’s just a syntax error of html. Closing A tag should be</a>instead of<a/>.
That causes the odd color styling.Forum: Fixing WordPress
In reply to: Create Page with Sortable List of DataHow about using one of these sorting/filtering jQuery plugins.
Forum: Fixing WordPress
In reply to: Text Widget Text ColorThe reason why it is red is that the preceding “Email Us Here” link is not correctly closed.
Email Us Here<a/>It should be
Email Us Here</a>Forum: Fixing WordPress
In reply to: Implementing Javascript in a postPlease check to see if it works when just putting the above code in text editor.
If not, check the correct path to updatepage.js.
If the path is correct, you can use shortcode to add javascript even in visual editor, like [updatepate].Add this code in your functions.php.
function print_updatepage_js() { $str = '<script type="text/javascript" src="/scripts/updatepage.js"></script><script type="text/javascript"> updatepage(); </script>'; return $str; } add_shortcode('updatepage', 'print_updatepage_js');Forum: Fixing WordPress
In reply to: How to change things at HOME pageHi.
It seems you need to edit template files.
First, prepare child theme for the Point theme, just follow the instructions in Codex page.https://codex.wordpress.org/Child_Themes
Now that you have style.css and functions.php in your new child theme directory.
One more file is needed for editing. Duplicate index.php from point theme directory to the child theme directory, since this template file is used to display home page in Point theme.
Related code is around line 44.Forum: Fixing WordPress
In reply to: How to change things at HOME pageWhich theme do you use?
It mostly depends on theme templates.So you are using Column Shortcodes plugin, right?
If that is true, here is a documentation page, I have not used it before, though.https://wordpress.org/plugins/column-shortcodes/faq/
If you want to align 2 images side by side, code should looks like:
[one_half]/*left image*/[/one_half] [one_half_last]/*right image*/[/one_half_last]