-
Posts
185 -
Joined
-
Last visited
Personal Information
Recent Profile Visitors
639 profile views
DPruitt's Achievements
-
BEST TEMPLATE FOR THIS WEBSITE DESIGN (IMAGE ATTACHED)?
DPruitt replied to ryanmariehelfant's topic in Customize with code
Since you're on version 7, maybe Wells?- 3 replies
-
- custom-css
- template
-
(and 2 more)
Tagged with:
-
feelingantisocial started following DPruitt
-
DQandPartners started following DPruitt
-
StoriesAroundTheSun reacted to a post in a topic: Keep cart icon from disappearing in bottom right corner?
-
DPruitt reacted to a post in a topic: MOVE 'NAVIGATION LINK' TO BOTTOM (ABOVE FOOTER)? AND HIDE 'NAVIGATION LINK' ON SPECIFIC PAGE?
-
Instead of hiding the entire header with this code: #collection-61cf21724254e77985673323 #header { display: none; } Use this instead: #collection-61cf21724254e77985673323 #topNav {display: none;} If you don't remove the old code, you would need to also add: #collection-61cf21724254e77985673323 #header { display: block; }
- 6 replies
-
- navigation-link
- footer
-
(and 2 more)
Tagged with:
-
DPruitt reacted to a post in a topic: Hiding 'Create Account' from user account login iframe
-
DPruitt changed their profile photo
-
With the accordion, you can first create a text block for the first part of the visible text, then drop in the accordion block below it with "Read More" as a title, with the description containing the remaining text... If you're trying to do it within the carousel, you would need HTML within the description, Javascript for the "read more" button along with CSS to style it visually. I've written this for a few clients, however, you do have to add HTML to the content description which some people don't like doing. For example <h4>Read More...</h4> would be added to the description field.
-
mobile 7.1 Portfolio Pages - Change mobile header image height.
DPruitt replied to brazenfilms's topic in Code Blocks
The first section is set to "large" more than likely. Try this instead which only fixed this specific page/item: @media screen and (max-width: 768px) { #item-64b52c9d20a12e01581b3309 .page-section:first-child {min-height: 30vh!important;} } -
Change the header size on my Newsletter
DPruitt replied to niteshifte's topic in Customize with code
You should be able to do this under "Fonts". You can also code it with custom CSS like this: .newsletter-form .newsletter-form-header-title {font-size: 25px !important;} -
Try this: Blog Title: .blog-title { font-family: Helvetica Neue !important; font-size: 2rem !important; text-transform: none !important; font-weight: 500 !important; letter-spacing: 0rem !important; margin-bottom: 0.8em; margin-top: 0.8em !important; padding-bottom: 0.5rem !important; padding-top: 0.5rem !important;} Blog Excerpt: .blog-excerpt p {font-size: 1rem !important;} .blog-excerpt {padding-bottom: 0.8rem !important;} Read More Link: .blog-more-link { font-family: 'aktiv-grotesk-extended' !important; font-weight: 500 !important; font-size: 1rem !important; font-style: normal !important; text-transform: uppercase !important;}
-
Do you have specifics that you'd like to see?
-
Try this which displays the original desktop navigation: .header-display-desktop { display: flex !important; } .header-display-mobile,.header-burger { display: none !important; } .header .header-title-nav-wrapper .header-title { flex: 0 100% !important; }
-
Slideshow height and how it displays on mobile version
DPruitt replied to Wozza's topic in Customize with code
Need a link? -
Change colour of site title hover when background is the same
DPruitt replied to robfeltrin's topic in Customize with code
You can, but it would require javascript... -
If you can run javascript you can use this probably: <script src="https://code.jquery.com/jquery-3.5.0.js"></script> <script> $('#grid') .before('<h3 class="kwportfolio">My portfolio site is under construction! In the meantime, please check out some of my past work below.<br>Need recent work samples now?<a href=mailto:karenlwerling@gmail.com>Please reach out to me directly.</a></h3>') </script>