PODxt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why do my dashboards look different? (different font size)I’d be curious to know why!
Forum: Themes and Templates
In reply to: [Twenty Thirteen] How to change Page Header size?You can also play with
.site-header .home-link {
min-height: 200px !important;
}Forum: Themes and Templates
In reply to: [Twenty Thirteen] How to change Page Header size?Create a child theme. In your stylesheet, play with margin, max-width, padding and bg size parameters like:
.site-header {
margin:10px auto 0 auto;
max-width:1200px;
padding:0;
background-size: 1200px auto;
}Forum: Fixing WordPress
In reply to: Why do my dashboards look different? (different font size)You put me on the right track, that was actually the theme that changed that! Thanks
Forum: Fixing WordPress
In reply to: Why do my dashboards look different? (different font size)True, I installed the exact same plugins on both installs and it didn’t change anything!
Forum: Themes and Templates
In reply to: [Elisium] Something (fonts?) seems to be missingThanks, it did, I guess that’s something that’ll need to get fixed in the next theme update!
Forum: Fixing WordPress
In reply to: Where do I put this little js snippet?Thanks guys
Forum: Fixing WordPress
In reply to: Where do I put this little js snippet?Thanks for looking into it, I tried what you suggested with no luck. Here’s my testing page: http://mywptestsite.is-great.org/blabla/
When I look at the source code, everything seems to be loaded (the custom css, and the js at the footer), no clue what’s going wrong here.
Forum: Plugins
In reply to: [Meteor Slides] Adding caption text effects?Hi, thanks for your reply. I’m trying to follow the instructions from this thread: http://wordpress.org/support/topic/plugin-meteor-slides-add-featured-image-caption-to-each-slide?replies=8
I copied the css code into the style.css file from my child theme, I copied the_post_thumbnail_caption(); function exatcly as typed in the post (without any addition) into my functions.php in my child theme but nothing happens. It seems like the function is not triggered like a add_filter() or add_action() is missing.
Do you know what I’m missing here to add the caption?
Forum: Fixing WordPress
In reply to: Menus, how to create a label without creating a link to a page?Thanks! Do you know if there’s a way to make the label unclickable?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] 2 Tables side by sideHi Tobias, I’m going to try that. I don’t experience the “text push” for some reason and that was my main concern. Thanks for the support!
Forum: Fixing WordPress
In reply to: How to add javascript codes?I ran some more tests and I got the script to work by:
– changing class to id for the css and putting the css code in my main css
– and just adding the following code to the footer<?php wp_enqueue_script( 'scrollup', get_stylesheet_directory_uri() . '/js/scrollup.js', array( 'jquery' ), '', true ); ?>Is there a reason why it doesn’t work with “class”? Using class instead of id wouldn’t let the custom css to load.
And more importantly, why is it useless to use wp_register_script() and add_action() ?? I thought these were required when adding js scripts to wordpress!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] 2 Tables side by sideHello, thanks for the quick reply. I set up a live test website so you can see exactly what I’m talking about: http://mywptestsite.is-great.org/6-2/
Forum: Fixing WordPress
In reply to: How to add javascript codes?@andrew Nevins
I’m working offline so I don’t have anything online for now. I’m trying to set up a dummy website for testing purpose but it will take some days (weeks?) for my internet provider to activate my ftp and SQL accounts as these is a free service so there’s no real customer support. Once everything is up and running, I’ll put the link here.I noticed that the js was actually loaded into the source page, right before another js also triggering JQuery. The 2nd js comes from the WP 2013 theme. But I can’t find any trace of my css file (scrollup.css).
I also noticed that the warning I got in the console tab “Event.returnValue is deprecated. Please use the standard event.preventDefault() instead.” disappeared when I removed my code from the footer (so the js is not triggered).
@endlyss
Thanks for the help, I just did what you suggested, the script is loading in the source page, there’s no warning from Chrome in the Console tab but, still no sign from my CSS! I used the exact same css as in my first post. I only removed “.scrollup:hover {” as it doesn’t seem to work (I think I read you needed to use js to use the hover option).Forum: Fixing WordPress
In reply to: How to add javascript codes?@andrew Nevins
I’m no expert, and I gave as much informations as I could.I tried to decipher the source page, and it doesn’t seem to trigger my css or js.
The console tab? I don’t even know what this is. I cheched that and it mentionned : Event.returnValue is deprecated. Please use the standard event.preventDefault() instead.
I can’t even tell if this is related to my problem here.