julieisms
Forum Replies Created
-
My mobile navigation doesn’t work since I updated Next Gen Plugin. I am using the Uber Theme by Theme Trust and I manually added a dropdown mobile nav menu using javascript ‘selectnav.js’
You can refer to this tutorial page for more details on the script, this is exactly how I installed it: https://writenowdesign.com/blog/wordpress/wordpress-how-to/how-to-add-a-responsive-menu-to-wordpress-twenty-twelve-template/#comment-9019
Forum: Fixing WordPress
In reply to: Custom post type permalinks not workingI’m having the same problems and can’t seem to find the solution. I can get an excerpt of my post but when I click the read more link I get “page not found”
Were you able to find a solution to this after?
I keep reading to update my permalinks..that does nothing though…
Forum: Reviews
In reply to: [Responsive] Almost PerfectI know ?? All in all it’s my favourite theme by far because I like to customize and I just added in my own tags in the end..but I couldn’t get them everywhere I wanted. Perhaps when I get better at this I will be able to customize it better. Thanks Emil!!
I ran into a similar issue with a slider I was using. Basically the border you are putting on your image is adding to the width and height and therefore no longer fits in the parameters that are set. If you are using a theme that has overflow:hidden then the part that’s overflowing is getting cut off.
ONE solution:
img{
box-sizing: border-box;
}Be sure to put in -moz-, -webkit-, etc prefixes.
Or just add some width and height to your slider to compensate for the extra space that’s put on from the border.
I tested out the box-sizing in firebug and it worked on your site.
Good Luck!