Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1227839

    Hi, I always resize images on my desktop to the desired size for use on my site prior to uploading it. Typically it is 600 pixels wide and 410 pixels high.
    However, after uploading the file, the ShoutBox theme (and possibly WPTouch mobile theme) seems to generate 18 additional files. How can I –

    A) Disable this from happening? I want to ensure all images are correctly rendered on the site and WPTouch mobile theme
    B) Delete old unnecessary files?

    Thanks!

    #1228136

    Hey Kshipra,
    Sorry for the late reply, I recommend using the plugin Simple Image Sizes and using it’s options at WordPress > Dashboard > Settings > Media > Media Settings to choose which thumbnails are created. The WordPress page for this plugin says it is old, but it still works good because has a basic function that has not changed in WordPress.
    After making your choices you will need to Regenerate Thumbnails and clear your browser cache.

    Best regards,
    Mike

    #1229798

    Thanks Mike! That worked! Now my next task is – how do I get rid of the white space in the widget box? I’ve added a custom HTML widget and added Google adsense code within. See screenshot in private content.

    #1229817

    Hi,
    Glad to hear this helped, for your next issue, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .sidebar1 > #custom_html-4 {
    	padding: 0 !important;
    }
    .sidebar1 > #custom_html-4 > .custom-html-widget {
    	height: 250px !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1229818

    Perfect! Thank you so much :)

    #1229820

    Mike, can we do the same thing for the long rectangular advertisement (5th from the top / 2nd from the bottom) in the sidebar?

    #1229822

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .sidebar1 > #custom_html-3 {
    	background: #F8F8F8 !important;
    	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0) !important;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0) !important;
    }

    Best regards,
    Mike

    #1229823

    Awesome – thanks! Is there a way to move the ad unit a little to the left side to align with the rest of the sidebar boxes?

    #1229832

    Hi,
    Please try this css:

    #custom_html-3 #aswift_3 {
    	left: -60px !important;
    }

    Feel free to adjust to suit.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1229967

    Agreed – looks better centered. Thank you so much Mike!

    #1230048

    How can I change the font of the ‘Quick Snapshot’ section in the sidebar? I’ve got a plugin where I can apply fonts, but don’t know what element to apply to. I’ve tried .Sidebar and .Sidebar1, but no luck. I’d like to match it with the ‘RECEIVE INSTANT EMAIL NOTIFICATIONS’ section’s font.

    #1230270

    Hi,
    To target “RECEIVE INSTANT EMAIL NOTIFICATIONS” only, try this css:

    #blog_subscription-4 > h3.widgettitle {
    	    font-size: 16px;
    }

    To target all of the widget titles in the sidebar, try this css:

    .sidebar1 .cufon_headings {
    	    font-size: 16px;
    }

    You can use any font adjustment in the rule, I used “font-size” as an example.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1230317

    Thanks so much Mike! My last question – how can I target the comments section?

    Update: nevermind! I got it to work. I’ve started playing with the developer tools to find out the target names :)

    • This reply was modified 3 years, 9 months ago by TMRG.
    #1230422

    Hi TMRG,

    Glad you got it working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Shoutbox – Disable 18 Additional Images from being generated’ is closed to new replies.