Forum Replies Created
-
AuthorPosts
-
Cesare Gilento
ParticipantThanks indeed, Mr. Font.
Cesare Gilento
ParticipantThe code is at line 662 of the stylesheet
/* Site Container --------------------------------------------- */ .site-container { background-color: #fff; box-shadow: 0 0 80px rgba(0, 0, 0, 0.05); margin: 40px auto; padding-left: 80px; padding-right: 80px; max-width: 1280px; }
April 7, 2018 at 4:02 am in reply to: Polish characters formatting problem in News Pro Theme #218729Cesare Gilento
ParticipantI tested locally and it works. Try the solution in my first post
April 7, 2018 at 2:25 am in reply to: Polish characters formatting problem in News Pro Theme #218725Cesare Gilento
ParticipantSorry, I've seen you already enqueued Raleway with Latin Extended characters. So you need to use another typeface.
April 7, 2018 at 2:05 am in reply to: Polish characters formatting problem in News Pro Theme #218724Cesare Gilento
ParticipantTry to add 'Latin extended' support:
<link href="https://fonts.googleapis.com/css?family=Raleway&subset=latin-ext" rel="stylesheet">
If it doesn't work you'll have to change the Raleway typeface for one that supports Polish characters.
April 4, 2018 at 6:25 am in reply to: Infinity and bumping :( – Blog post title area not displaying #218621Cesare Gilento
ParticipantIt seems you removed the entire entry-header markup. Do you have a separate file for custom functions?
Cesare Gilento
Participant.full-width-content .content { float: none; margin: 0 auto; width: 60%; }
Cesare Gilento
ParticipantThis is not a public forum.
By the way, in Aspire Pro you can find what you're looking for at line 715 of the stylesheet:
.full-width-content .content { width: 100%; }
Edit as you want.
March 27, 2018 at 8:06 am in reply to: Unable to remove content from Archive Page in grid layout #218356Cesare Gilento
ParticipantHi subbame, try this:
// Remove entry content add_action ( 'genesis_before_loop', 'blog_grid_remove_content' ); function blog_grid_remove_content() { remove_action( 'genesis_entry_content', 'genesis_do_post_content' ); }
Cesare Gilento
ParticipantI'm sorry, i forgot to check "Notify me follow-up replies via email" so I missed your replies.
You just have to edit line 10 as line 4
Before
var windowHeight = $( window ).height();
After
var windowHeight = 300;
Cesare Gilento
ParticipantHi shontam,
the Front Page Image is a backstretch image and it's height is set in js\front-page.js
// Set front page 1 height var windowHeight = $( window ).height() - 77;
You can edit line 4 as follows:
// Set front page 1 height var windowHeight = 300;
-
AuthorPosts