Mobile app version of vmapp.org
Login or Join
Dunderdale640

: How do continue a pattern or style if it is in bitmap form? I have downloaded some psd templates that I must edit. In this case, I am attempting to continue the red bar across the black

@Dunderdale640

Posted in: #AdobePhotoshop #Patterns

I have downloaded some psd templates that I must edit. In this case, I am attempting to continue the red bar across the black area that currently divides it. It is in bitmap form, however (no layer effects I can look at), so I'm wondering what the best way would be to make the red bar look like it seamlessly continues across this black gap?

Thank you in advance.

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Dunderdale640

3 Comments

Sorted by latest first Latest Oldest Best

 

@Barnes313

open in Photoshop
1 pixel width guide by however height it is
use the rectangle Marquee Tool
Edit > Define Pattern
Rectangle Tool with Fill Pixels selected
Right click on layer you just added the box
Blending Options
Choose the pattern you just made.










It would better if you did this in code

to do this look up CSS3 gradients. Some good examples here at CSS-tricks and here is a generator. Your code would look something like this for the gradient:

.linearBg2 {
/* fallback */
background-color: #1a82f7 ;
background: url(images/linear_bg_2.png);
background-repeat: repeat-x;

/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1a82f7), to(#2F2727));

/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #2F2727 , #1a82f7 );

/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #2F2727, #1a82f7);

/* IE 10 */
background: -ms-linear-gradient(top, #2F2727, #1a82f7);

/* Opera 11.10+ */
background: -o-linear-gradient(top, #2F2727, #1a82f7);
}

10% popularity Vote Up Vote Down


 

@Pierce403

Unless I'm reading this wrong, the quickest way to do this is to just grab 1px of the area and stretch it out the whole length:

10% popularity Vote Up Vote Down


 

@BetL875

I would just zoom in and select the red color from the very bottom of the image, where it meets the thin red & black line. I'd create a large red rectangle in that color, covering the whole width of the page. Then I'd add a gradient overlay of black fading to transparent, with the black starting at the top and fading to transparent at the bottom. I'd make that whole overlay semi-transparent until I matched the original.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme