• I’m using the Constructor theme on a new site I’m trying to develop … only problem is that because it’s such a flexible theme there is way too much code for me to hack with my rudimentary skills.

    Two things I’m stuck on so far.

    1. On the following page you can see an image in the body of the page. I don’t want a box around it – but can’t find in the stylesheet how to set up a style that has no decoration (would like to keep the box as an option too).
    https://mrkeefe.co.uk/

    2. On this page, the text is indenting (just normal p/paragraph style) – how can I get rid of this? There are just too many different classes and bits in the stylesheet for me to figure it out.
    https://mrkeefe.co.uk/about/

    Thanks guys!

Viewing 2 replies - 1 through 2 (of 2 total)
  • in style.css, here is the style influencing the border around the image:

    .hentry .entry .crop,
    .hentry .entry img {
        padding:4px;
        border-style:solid;
        border-width:1px;
        border-radius: 4px;
        -moz-border-radius: 4px;
        -khtml-border-radius: 4px;
        -webkit-border-radius: 4px
    }

    any change will obviously have effect on all other images in the posts.
    if you just want to make the change to this one image, you could be more specific and add this to the style.css:
    div#post-62 .entry img {border:none;}

    Thread Starter webnik

    (@noisedude)

    Brilliant, thanks.

    How would I change the default border to none, but keep that radiused border as an option (class?) for some images?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Constructor theme – a couple of changes needed’ is closed to new replies.